aboutsummaryrefslogtreecommitdiffstats
path: root/package/rbcfg/src/Makefile
diff options
context:
space:
mode:
authorJohn Crispin <blogic@openwrt.org>2012-10-17 21:53:23 +0000
committerJohn Crispin <blogic@openwrt.org>2012-10-17 21:53:23 +0000
commitc921e6607e2a0db1af65834d172f83d59268b71e (patch)
tree435e37122bfc04753372d24c0f101eac80ecd2cb /package/rbcfg/src/Makefile
parent7eb2af28dda81b65e4764e62719d88ff42f5cbc1 (diff)
downloadupstream-c921e6607e2a0db1af65834d172f83d59268b71e.tar.gz
upstream-c921e6607e2a0db1af65834d172f83d59268b71e.tar.bz2
upstream-c921e6607e2a0db1af65834d172f83d59268b71e.zip
move to boot/ folder
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@33824 3c298f89-4303-0410-b956-a3cf2f4a3e73
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