Restructure project directories

This commit is contained in:
2019-05-01 19:11:06 +02:00
parent 5e0a815f26
commit db777837ee
7 changed files with 2 additions and 2 deletions

16
test/makefile Normal file
View File

@@ -0,0 +1,16 @@
CC = g++
CFLAGS = -std=c++17 -Wall
CPPS = $(wildcard *.cpp)
EXES = $(patsubst %.cpp, %.out, $(CPPS))
.PHONY: all clean
%.out: %.cpp
$(CC) $(CFLAGS) $< -o $@
all: $(EXES)
clean:
-rm *.o
-rm *.out