Files
smargopolo/paramfile/Makefile
Wayne Glettig 29deb702cc added paramfile
2019-07-25 09:28:32 +02:00

13 lines
170 B
Makefile

CC=g++
CFLAGS=-I. -std=c++11 -g
FILES = Test.cpp
OUT_EXE = Test
build: $(FILES)
$(CC) -o $(OUT_EXE) $(FILES) $(CFLAGS)
clean:
rm -f *.o core
rebuild: clean build