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