[package] libpcap: explicitely disable libnl support to prevent different build resul...
[openwrt.git] / package / maccalc / src / Makefile
1 CC = gcc
2 CFLAGS = -Wall
3 OBJS = main.o
4
5 all: maccalc
6
7 %.o: %.c
8 $(CC) $(CFLAGS) -c -o $@ $<
9
10 maccalc: $(OBJS)
11 $(CC) -o $@ $(OBJS)
12
13 clean:
14 rm -f maccalc *.o
This page took 0.048367 seconds and 5 git commands to generate.