csci3081/repo-zhan4854/labs/lab04/Makefile
Michael Zhang 1ba4536588
f
2018-01-29 17:24:20 -06:00

19 lines
495 B
Makefile
Executable file

### CSci-3081W Project Support Code Makefile ###
# This is the main Makefile for the project. It provides easy access
# to building and testing the whole project, which requires running
# make in subdirectories.
.PHONY: proj01 clean
# Build everything that can be built for this project
all: proj01
# Build the bin/proj01 executable by running make in the project's src directory
proj01:
$(MAKE) -C src all
# Clean everything that has been for a fresh start
clean:
$(MAKE) -C src clean