Files
seer/tests/helloinferior/Makefile
T
2022-09-13 07:46:31 -05:00

13 lines
237 B
Makefile

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