periodic:
	gcc -c  -D POSIX -D_TIME_IN_MS_ -O2 -I ../../lib/hippo -fmessage-length=0 -I ./periodic.hippo ../../lib/hippo/hippo.c periodic.hippo/*.c ./main.c
	gcc -o periodic ./*.o -lpthread -lrt 
	rm *.o
clean:
	rm periodic
new: clean
	$(MAKE)
