Files
modern-cpp-tutorial/1/Makefile
2016-08-20 13:00:44 +08:00

7 lines
93 B
Makefile

TARGET = 1.1
all:
gcc -c foo.c
g++ 1.1.cpp foo.o -o $(TARGET)
clean:
rm -rf *.o $(TARGET)