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

23 lines
332 B
Plaintext

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