Files
seer/tests/hellofork/Makefile
2022-04-18 15:50:29 -05:00

13 lines
209 B
Makefile

# This is the default target, which will be built when
# you invoke make
.PHONY: all
all: hellofork
hellofork: hellofork.c
g++ -g -o hellofork hellofork.c
.PHONY: clean
clean:
rm -f hellofork hellofork.o