summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile37
1 files changed, 0 insertions, 37 deletions
diff --git a/Makefile b/Makefile
deleted file mode 100644
index 9603dc22..00000000
--- a/Makefile
+++ /dev/null
@@ -1,37 +0,0 @@
-.NOTPARALLEL: blink-ram blink-flash
-KERNEL=/local/src/linux-2.6-aiko-64
-KINC=$(KERNEL)/drivers/usb/serial
-
-WARN=-Wall -Wpointer-arith -Wstrict-prototypes -Wmissing-prototypes\
- -Wmissing-declarations -Wnested-externs -fno-strict-aliasing
-CFLAGS=-g -I$(KINC) $(WARN)
-LIBS=-lusb
-
-KERNEL_OBJS=cccp.o
-LIBUSB_OBJS=cp-usb.o
-
-SRCS=ccdbg.c ccdbg-command.c ccdbg-debug.c ccdbg-flash.c \
- ccdbg-hex.c ccdbg-io.c ccdbg-memory.c \
- $(LIBUSB_OBJS)
-
-OBJS=$(SRCS:.c=.o)
-
-INCS=ccdbg.h cccp.h
-
-PROG=ccdbg
-
-LOAD=blinks
-
-all: $(PROG) $(LOAD)
-
-$(PROG): $(OBJS)
- $(CC) $(CFLAGS) -o $@ $(OBJS) $(LIBS)
-
-clean:
- rm -f $(PROG) $(OBJS)
- +make -C blink clean
-
-$(OBJS): $(INCS)
-
-blinks:
- +make -C blink