Add Makefile

This commit is contained in:
Cory Balaton 2023-09-07 14:39:35 +02:00
commit e407ce073e
No known key found for this signature in database
GPG key ID: 3E5FCEBFD80F432B

12
src/Makefile Normal file
View file

@ -0,0 +1,12 @@
CC=g++
all: simpleFile
simpleFile: simpleFile.o
$(CC) -o $@ $^
%.o: %.cpp
$(CC) -c $< -o $@
clean:
rm *.o