From 1be2e5ea11d0ff467d7f7f3e64d1f4ad872a3f0c Mon Sep 17 00:00:00 2001 From: blogic Date: Wed, 17 Oct 2012 21:53:23 +0000 Subject: move to boot/ folder git-svn-id: svn://svn.openwrt.org/openwrt/trunk@33824 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- package/boot/rbcfg/src/Makefile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 package/boot/rbcfg/src/Makefile (limited to 'package/boot/rbcfg/src/Makefile') diff --git a/package/boot/rbcfg/src/Makefile b/package/boot/rbcfg/src/Makefile new file mode 100644 index 000000000..62c74b267 --- /dev/null +++ b/package/boot/rbcfg/src/Makefile @@ -0,0 +1,14 @@ +CC = gcc +CFLAGS = -Wall +OBJS = main.o cyg_crc32.o + +all: rbcfg + +%.o: %.c + $(CC) $(CFLAGS) -c -o $@ $< + +rbcfg: $(OBJS) + $(CC) -o $@ $(OBJS) + +clean: + rm -f rbcfg *.o -- cgit v1.2.3