aboutsummaryrefslogtreecommitdiffstats
path: root/package/rbcfg/src/Makefile
diff options
context:
space:
mode:
authorJohn Crispin <john@openwrt.org>2012-10-17 21:53:23 +0000
committerJohn Crispin <john@openwrt.org>2012-10-17 21:53:23 +0000
commit788a5816ad218c8401db3eccf459e8c55df35458 (patch)
tree37896985cb51dc1da5a717761cbf1e6282413bbd /package/rbcfg/src/Makefile
parent7c50aea1ec953a4e70edc02105f7c7358c51ce0c (diff)
downloadupstream-788a5816ad218c8401db3eccf459e8c55df35458.tar.gz
upstream-788a5816ad218c8401db3eccf459e8c55df35458.tar.bz2
upstream-788a5816ad218c8401db3eccf459e8c55df35458.zip
move to boot/ folder
SVN-Revision: 33824
Diffstat (limited to 'package/rbcfg/src/Makefile')
-rw-r--r--package/rbcfg/src/Makefile14
1 files changed, 0 insertions, 14 deletions
diff --git a/package/rbcfg/src/Makefile b/package/rbcfg/src/Makefile
deleted file mode 100644
index 62c74b2678..0000000000
--- a/package/rbcfg/src/Makefile
+++ /dev/null
@@ -1,14 +0,0 @@
-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