1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2025-01-27 20:31:07 +02:00

15 lines
157 B
Makefile
Raw Normal View History

CC = gcc
CFLAGS = -Wall
OBJS = main.o
all: maccalc
%.o: %.c
$(CC) $(CFLAGS) -c -o $@ $<
maccalc: $(OBJS)
$(CC) -o $@ $(OBJS)
clean:
rm -f maccalc *.o