simple-rigid-sim/.history/Makefile_20200512003842
2020-05-13 15:54:11 -04:00

16 lines
215 B
Plaintext

LINK = -lstdc++ -lSDL2 -lOpenGL -lGLEW -lGLU
DBG = -Wall
CC := clang $(DBG)
all: build ;
build: $(targets) ;
cd bin/
$(CC) -c ../src/*.cpp
.PHONY: clean
clean: main.o ;
rm -rf ./bin/*
run: build ;
./bin/main