23 lines
303 B
Makefile
23 lines
303 B
Makefile
# COMP1521 22T2 ... a general makefile for multiple exercises
|
|
|
|
ifneq (, $(shell which dcc))
|
|
CC = dcc
|
|
else ifneq (, $(shell which clang) )
|
|
CC = clang
|
|
else
|
|
CC = gcc
|
|
endif
|
|
|
|
EXERCISES ?=
|
|
CLEAN_FILES ?=
|
|
|
|
.DEFAULT_GOAL = all
|
|
.PHONY: all clean
|
|
|
|
-include *.mk
|
|
|
|
all: ${EXERCISES}
|
|
|
|
clean:
|
|
-rm -f ${CLEAN_FILES}
|