mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-10 14:43:07 +02:00
53 lines
1.6 KiB
Diff
53 lines
1.6 KiB
Diff
|
diff -ruN mini_fo-old/Makefile mini_fo-new/Makefile
|
||
|
--- mini_fo-old/Makefile 2005-05-08 01:22:51.000000000 +0200
|
||
|
+++ mini_fo-new/Makefile 2005-08-15 04:37:22.000000000 +0200
|
||
|
@@ -26,36 +26,32 @@
|
||
|
# allow custom override of TOPINC for fistgen developers
|
||
|
-include fistdev.mk
|
||
|
|
||
|
+obj-m := mini_fo.o
|
||
|
+mini_fo-objs := meta.o dentry.o file.o inode.o main.o super.o state.o aux.o
|
||
|
+
|
||
|
ifeq ($(KERNELVERSION),2.4)
|
||
|
-CFLAGS = -D__KERNEL__ -DMODULE -DFISTGEN -I. ${TOPINC} -O2 -Wall -Wno-unused -g -fno-common -fno-schedule-insns -fno-schedule-insns2 -fno-strict-aliasing -msoft-float -Werror
|
||
|
-ifeq ($(ARCH),um)
|
||
|
-CFLAGS += $(shell cd $(KERNEL_SRC) ; make script 'SCRIPT=@echo $$(CFLAGS)' ARCH=um)
|
||
|
-endif
|
||
|
-UCFLAGS = -DFISTGEN -I. ${TOPINC} -g -O2 -Wall -Wno-unused -Werror
|
||
|
-endif
|
||
|
|
||
|
-CC = $(CROSS_COMPILE)gcc
|
||
|
-LD = $(CROSS_COMPILE)ld
|
||
|
+O_TARGET := $(obj-m)
|
||
|
+obj-y := $(mini_fo-objs)
|
||
|
|
||
|
-obj-m := mini_fo.o
|
||
|
-mini_fo-objs := meta.o dentry.o file.o inode.o main.o super.o state.o aux.o
|
||
|
+-include $(TOPDIR)/Rules.make
|
||
|
+
|
||
|
+endif
|
||
|
|
||
|
all: mini_fo$(KERNELVERSION)
|
||
|
|
||
|
-mini_fo2.4: ${obj-m}
|
||
|
+mini_fo2.4:
|
||
|
+ $(MAKE) -C ${KERNEL_SRC} TOPDIR="${KERNEL_SRC}" SUBDIRS=$(shell pwd) modules
|
||
|
|
||
|
mini_fo2.6:
|
||
|
- make -C ${KERNEL_SRC} SUBDIRS=$(PWD) modules
|
||
|
-
|
||
|
-${obj-m}: ${mini_fo-objs}
|
||
|
- $(LD) -o ${obj-m} -r ${mini_fo-objs}
|
||
|
+ $(MAKE) -C ${KERNEL_SRC} SUBDIRS=$(shell pwd) modules
|
||
|
|
||
|
TAGS:
|
||
|
etags -t *.[hc]
|
||
|
|
||
|
clean:
|
||
|
ifeq ($(KERNELVERSION),2.6)
|
||
|
- -make -C ${KERNEL_SRC} SUBDIRS=$(PWD) clean
|
||
|
+ -$(MAKE) -C ${KERNEL_SRC} SUBDIRS=$(shell pwd) clean
|
||
|
endif
|
||
|
rm -f ${obj-m} ${mini_fo-objs} ${obj-m:.o=.ko} *.d .*.flags *~
|
||
|
rm -f TAGS
|