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

15 lines
203 B
Plaintext

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