1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-09-15 19:35:52 +03:00
openwrt-xburst/package/maccalc/src/Makefile
juhosg c754b185c9 package/maccalc: a simple mac address manipulation utility
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@28004 3c298f89-4303-0410-b956-a3cf2f4a3e73
2011-08-15 18:55:51 +00:00

15 lines
157 B
Makefile

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