mirror of
https://github.com/PoetryInCode/simple-rigid-sim.git
synced 2025-04-19 10:17:13 -04:00
general
This commit is contained in:
parent
6364a572e5
commit
009bc6cc1f
2
.gitignore
vendored
2
.gitignore
vendored
@ -9,3 +9,5 @@ bin/*
|
|||||||
.ccls-cache/*
|
.ccls-cache/*
|
||||||
|
|
||||||
*.gch
|
*.gch
|
||||||
|
|
||||||
|
vgcore.*
|
||||||
|
6
Makefile
6
Makefile
@ -1,6 +1,6 @@
|
|||||||
CC = clang
|
CC = clang
|
||||||
LINK = -lstdc++ -lSDL2 -lm -ldl -lSDL_gfx
|
LINK = -lstdc++ -lSDL2 -lm -ldl -lSDL_gfx
|
||||||
DBG = -Wall -O3
|
DBG = -Wall -g -gmodules -O0
|
||||||
CC += $(DBG)
|
CC += $(DBG)
|
||||||
|
|
||||||
all: build ;
|
all: build ;
|
||||||
@ -37,7 +37,7 @@ build: $(goals) ;
|
|||||||
$(CC) $(goals) -o ./bin/simulator $(LINK)
|
$(CC) $(goals) -o ./bin/simulator $(LINK)
|
||||||
|
|
||||||
#bin/%.o : src/%.cpp ;
|
#bin/%.o : src/%.cpp ;
|
||||||
|
|
||||||
|
|
||||||
.PHONY: clean
|
.PHONY: clean
|
||||||
clean:
|
clean:
|
||||||
@ -45,4 +45,4 @@ clean:
|
|||||||
|
|
||||||
.PHONY: run
|
.PHONY: run
|
||||||
run: build ;
|
run: build ;
|
||||||
./bin/simulator
|
./bin/simulator
|
||||||
|
Loading…
x
Reference in New Issue
Block a user