aboutsummaryrefslogblamecommitdiffstats
path: root/daemon/makefile
blob: 66ec91fc2bf72693cc8b409d054a2e25e9b1dfa2 (plain) (tree)


























                                                                       
##################################VARS#################################
CC=clang
CC_FLAGS=
LD_FLAGS=
TARGET=mutatord
##################################RULES################################
.DEFAULT: all

.PHONY: all clean help

all: $(TARGET)

.c.o:
	$(CC) $(CC_FLAGS) -c $< -o $@

TARGET:
	$(CC) $^ $(LD_FLAGS) -o $@

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

help:
	@echo 'all build the target. all is the deafult.'
	@echo 'clean runs clean.'
	@echo 'help runs help.'