include ../define.mk


OBJS  = main.o

main.o:main.c
	$(CC) $(CFLAGS) -c $< -o $@
clean:
	rm -f *.o
