mirror of
https://github.com/kuhyx/testsAndMisc.git
synced 2026-07-06 20:43:01 +02:00
10 lines
366 B
Makefile
10 lines
366 B
Makefile
CXXFLAGS = -Wextra -Wall -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wcast-align -Wstrict-overflow=5 -Wwrite-strings -Wcast-qual -Wunreachable-code -pedantic -Wswitch-default -Wno-unused-parameter
|
|
# https://stackoverflow.com/a/3376483
|
|
|
|
compile:./game.cpp
|
|
g++ $(CXXFLAGS) -c ./game.cpp
|
|
g++ game.o -o app -lsfml-graphics -lsfml-window -lsfml-system
|
|
|
|
run:
|
|
./app
|