cmaybe/Makefile

13 lines
259 B
Makefile
Raw Normal View History

2018-08-11 09:37:14 +00:00
all: average convert_to_ints
2018-08-11 07:28:30 +00:00
2018-08-11 08:19:40 +00:00
average: average.c cmaybe.h
$(CC) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) -o $@ $<
2018-08-11 09:37:14 +00:00
convert_to_ints: convert_to_ints.c cmaybe.h
$(CC) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) -o $@ $<
2018-08-11 07:28:30 +00:00
clean:
2018-08-11 09:37:14 +00:00
rm -f average convert_to_ints
2018-08-11 07:28:30 +00:00
.PHONY: all clean