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

16 lines
211 B
Plaintext

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