KERNELDIR := /skiff/local/arm-linux
include $(KERNELDIR)/.config
DEFS := -D__KERNEL__ -DMODULE
INCLUDES := -I$(KERNELDIR)/include -I.
OPTS := -O2
WARNS := -Wall
CFLAGS := ${DEFS} ${INCLUDES} ${WARNS} ${OPTS} ${WARNS}
ifdef CONFIG_SMP
CFLAGS += -D__SMP__ -DSMP
endif
CC := arm-linux-gcc
LD := ld
klar-objs := \
klar.o
all: klar.o
klar.o: ${klar-objs}
${LD} -r $^ -o $@
clean:
rm -f core *~
-
To unsubscribe from this list: send the line "unsubscribe linux-net" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
This archive was generated by hypermail 2b29 : Fri Nov 15 2002 - 22:00:01 EST