19 lines
495 B
Makefile
Executable file
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
|