59f8b8c8675af79fa34893061e089bdffdf4bed2
[girocco.git] / src / Makefile
blob59f8b8c8675af79fa34893061e089bdffdf4bed2
1 CC ?= cc
2 CFLAGS ?= -O
4 .PHONY : all clean install
6 all : can_user_push
8 clean :
9 rm -rf can_user_push.o* can_user_push.d* can_user_push
11 install :
13 can_user_push : can_user_push.c
14 $(CC) -o $@ $(CFLAGS) $?