Created
January 7, 2018 18:35
-
-
Save tanyuan/5633abe128b36fe16e85bf18f2d375c6 to your computer and use it in GitHub Desktop.
Makefile template (simple)
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
CXX=g++ | |
CFLAGS=-g -Wall | |
INCLUDE= | |
LINK= | |
all: program | |
%: %.cpp | |
$(CXX) $(CFLAGS) $(INCLUDE) $< -o $@ $(LINK) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment