summaryrefslogtreecommitdiffstats
path: root/admin/iprange/Makefile
blob: 13598d8b4d98bb00687c24c6355fe80a57aedaab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
CC       = cc
OPTIMIZE = -O3
LDFLAGS  = -s

OBJS     = iprange ip6range

all: $(OBJS)

%: %.c
	$(CC) $(LDFLAGS) $(OPTIMIZE) -o $@ $^

clean:
	rm -f $(OBJS) *.o *.a *~