You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
231 B
Makefile

FILES=main.cpp malloc_test.cpp
all:
@echo "Hello! This is an arbitrary test."
@echo
@echo "Usage: make [ clean | linux ]"
@echo
clean:
rm -f ./*.o
rm -f ./mtest
linux:
g++ -I../ $(FILES) -o mtest
rm -rf ./*.o