mirror of
https://github.com/epasveer/seer.git
synced 2026-08-29 08:34:42 +08:00
14 lines
336 B
Makefile
14 lines
336 B
Makefile
# This is the default target, which will be built when you invoke make
|
|
.PHONY: all
|
|
all: helloworld
|
|
|
|
# This rule tells make how to build the test program
|
|
helloworld: helloworld.cpp
|
|
g++ -g -o helloworld helloworld.cpp function1.cpp
|
|
|
|
# This rule tells make to clean things
|
|
.PHONY: clean
|
|
clean:
|
|
rm -f helloworld helloworld.o function1.o
|
|
|