mirror of
https://github.com/goonstation/goonstation-2016.git
synced 2026-08-22 13:36:13 +01:00
11 lines
178 B
Makefile
11 lines
178 B
Makefile
all: compile link
|
|
|
|
compile:
|
|
g++ -fPIC -O3 -c btime.cpp
|
|
|
|
link:
|
|
g++ btime.o -O3 -m32 -lstdc++ -lrt -shared -Wl,-soname,btime.so -o btime.so
|
|
|
|
install:
|
|
cp btime.so /usr/local/lib
|