Skip to content

Instantly share code, notes, and snippets.

View VincentTam's full-sized avatar
🏀
Rolling around

Vincent Tam VincentTam

🏀
Rolling around
View GitHub Profile
@VincentTam
VincentTam / Makefile
Created January 30, 2014 05:29
My minimun working example of a makefile.
CXX = g++
SRCS = foo.cpp
default: $(SRCS:.cpp=.out)
.cpp.out:
$(CXX) $< -o $@
clean:
rm -rf *.out