Files
seer/tests/hellovfork/Makefile
T
2022-09-16 19:39:58 -05:00

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