1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2025-01-18 09:51:07 +02:00

15 lines
163 B
Makefile
Raw Normal View History

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