mirror of
https://github.com/epasveer/seer.git
synced 2026-08-29 16:40:42 +08:00
13 lines
216 B
Makefile
13 lines
216 B
Makefile
# This is the default target, which will be built when
|
|
# you invoke make
|
|
.PHONY: all
|
|
all: hellovfork
|
|
|
|
hellovfork: hellovfork.c
|
|
g++ -g -o hellovfork hellovfork.c
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
rm -f hellovfork hellovfork.o
|
|
|