Created
April 7, 2018 21:44
-
-
Save creikey/930167dac9a3b80156c7536cb7fda0cb to your computer and use it in GitHub Desktop.
This file contains 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
.PHONY: clean | |
all: *.o | |
g++ *.o | |
%.o: %.cpp | |
g++ -c $(CXXFLAGS) $^ | |
clean: | |
-rm *.o | |
-rm *.gch | |
-rm a.out |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment