clone.sh: include note about initial size when appropriate
[girocco.git] / src / Makefile
blob9c985239823bfb140297008e9e63fe21ec62cc20
1 CC ?= cc
2 CFLAGS ?= -O
4 .PHONY : all clean install
6 all : can_user_push getent
8 clean :
9 rm -rf can_user_push.o* can_user_push.d* can_user_push
10 rm -rf getent.o* getent.d* getent
12 install :
14 can_user_push : can_user_push.c
15 $(CC) -o $@ $(CFLAGS) $?
17 getent : getent.c
18 $(CC) -o $@ $(CFLAGS) $?