Files
seer/tests/hellofork/Makefile
T

13 lines
209 B
Makefile
Raw Normal View History

2022-04-18 15:50:29 -05:00
# 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