diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2011-06-29 09:40:54 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2011-06-29 09:40:54 +0000 |
commit | 43938e8eb9b839af842835819b0ef869a0f09ae2 (patch) | |
tree | b93085534d661612e9d6d5f8fbf892c688df491c /package/rbcfg/src/Makefile | |
parent | d98476c6bd9693fe39a090e17b3ef2679a39c363 (diff) | |
download | upstream-43938e8eb9b839af842835819b0ef869a0f09ae2.tar.gz upstream-43938e8eb9b839af842835819b0ef869a0f09ae2.tar.bz2 upstream-43938e8eb9b839af842835819b0ef869a0f09ae2.zip |
package/rbcfg: new tool for modifying boot configuration on the RB4xx boards
SVN-Revision: 27315
Diffstat (limited to 'package/rbcfg/src/Makefile')
-rw-r--r-- | package/rbcfg/src/Makefile | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/package/rbcfg/src/Makefile b/package/rbcfg/src/Makefile new file mode 100644 index 0000000000..62c74b2678 --- /dev/null +++ b/package/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 |