1
0
mirror of https://github.com/alliedmodders/metamod-source.git synced 2025-02-08 02:54:23 +01:00
David Anderson c325d81b2e branched 1.4.2 to 1.6.0
--HG--
branch : sourcemm-1.6.0
extra : convert_revision : svn%3Ac2935e3e-5518-0410-8daf-afa5dab7d4e3/branches/sourcemm-1.6.0%40421
2007-09-18 20:03:47 +00:00

14 lines
256 B
Makefile

default: shworker
bin:
mkdir bin
fd_hopter.o: fd_hopter.cpp bin
gcc -fPIC -O2 -o bin/$@ -c $<
main.o: shworker.cpp bin
gcc -fPIC -O2 -o bin/$@ -c $<
shworker: fd_hopter.o main.o bin
gcc -ldl -lstdc++ bin/fd_hopter.o bin/main.o -o bin/shworker.bin