Files
mercury25/task1/provided/Makefile
louiscklaw c95f0ffd0e update,
2025-02-01 02:04:13 +08:00

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}