Openwrt/package/boot/rbcfg/src/Makefile
John Crispin 788a5816ad move to boot/ folder
SVN-Revision: 33824
2012-10-17 21:53:23 +00:00

15 lines
163 B
Makefile

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