Add Makefile

This commit is contained in:
Cory Balaton 2023-09-07 14:39:35 +02:00
parent f2f50ed3e4
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