exit gracefully if cannot lookup ip address
[pop3.git] / Makefile
blob013f1809dedd2b74d30f916c56b615351d6a6512
1 POLARPATH = /opt
2 CC = diet cc
3 CFLAGS = -Wall -O2 -I$(POLARPATH)/include/
4 LDFLAGS =
6 all: pop3
7 .c.o:
8 $(CC) -c $(CFLAGS) $<
9 pop3.o: config.h
10 pop3: pop3.o $(POLARPATH)/lib*/libpolarssl.a
11 $(CC) $(LDFLAGS) -o $@ $^
12 clean:
13 rm -f *.o pop3
14 ctags:
15 ctags *.[hc]