mirror of
https://github.com/Relintai/sfw.git
synced 2024-11-15 00:06:17 +01:00
14 lines
373 B
Bash
14 lines
373 B
Bash
|
cp -u ../out/full/sfw.h sfw.h
|
||
|
cp -u ../out/full/sfw.cpp sfw.cpp
|
||
|
cp -u ../out/full/sfw_3rd.m sfw_3rd.m
|
||
|
|
||
|
|
||
|
ccache g++ -Wall -g -c sfw.cpp -o sfw.o
|
||
|
ccache g++ -Wall -g -c game_scene.cpp -o game_scene.o
|
||
|
ccache g++ -Wall -g -c main.cpp -o main.o
|
||
|
|
||
|
#-static-libgcc -static-libstdc++
|
||
|
|
||
|
ccache g++ -Wall -lX11 -static-libgcc -static-libstdc++ -g sfw.o game_scene.o main.o -o game
|
||
|
|