Created
October 1, 2018 19:06
-
-
Save damienstanton/53d61140e91fd0f775548df2080033e1 to your computer and use it in GitHub Desktop.
dsa makefile
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name := $(shell basename $(CURDIR)) | |
| default: build | |
| build: | |
| @echo "Compiling..." | |
| @g++ -pipe -O2 -std=c++14 *.cpp -lm -o $(name) | |
| @echo "Done. Executable: $(name)" | |
| clean: | |
| @echo "Deleting $(name)" | |
| @rm $(name) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment