diff --git a/src/Makefile b/src/Makefile new file mode 100644 index 0000000..1121395 --- /dev/null +++ b/src/Makefile @@ -0,0 +1,12 @@ +CC=g++ + +all: simpleFile + +simpleFile: simpleFile.o + $(CC) -o $@ $^ + +%.o: %.cpp + $(CC) -c $< -o $@ + +clean: + rm *.o