mirror of
https://github.com/epasveer/seer.git
synced 2026-08-30 00:50:42 +08:00
13 lines
209 B
Makefile
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
|
|
|