Browse Source

implemented static target in makefile, but there are warnings

master
Pete McNeil 4 years ago
parent
commit
9e620a69b8
1 changed files with 44 additions and 5 deletions
  1. 44
    5
      makefile

+ 44
- 5
makefile View File

snfLOGmgr.o \ snfLOGmgr.o \
snfNETmgr.o \ snfNETmgr.o \
snfXCImgr.o snfXCImgr.o
$(CXX) $(CXXFLAGS) main.o \
$(CXX) $(CXXFLAGS) -o bin/SNFServer \
main.o \
base64codec.o \ base64codec.o \
configuration.o \ configuration.o \
mangler.o \ mangler.o \
snfGBUdbmgr.o \ snfGBUdbmgr.o \
snfLOGmgr.o \ snfLOGmgr.o \
snfNETmgr.o \ snfNETmgr.o \
snfXCImgr.o \
-o bin/SNFServer
snfXCImgr.o


static: main.o networking.o timing.o threading.o configuration.o snf_xci.o main.o
$(CXX) $(CXXFLAGS) -static main.o networking.o timing.o threading.o configuration.o snf_xci.o -o bin/SNFServer
static: main.o \
base64codec.o \
configuration.o \
mangler.o \
networking.o \
timing.o \
threading.o \
snf_HeaderFinder.o \
snf_xci.o \
snf_sync.o \
snf_saccades.o \
snf_engine.o \
SNFMulti.o \
GBUdb.o \
FilterChain.o \
snfCFGmgr.o \
snfGBUdbmgr.o \
snfLOGmgr.o \
snfNETmgr.o \
snfXCImgr.o
$(CXX) $(CXXFLAGS) -static -o bin/SNFServer \
main.o \
base64codec.o \
configuration.o \
mangler.o \
networking.o \
timing.o \
threading.o \
snf_HeaderFinder.o \
snf_xci.o \
snf_sync.o \
snf_saccades.o \
snf_engine.o \
SNFMulti.o \
GBUdb.o \
FilterChain.o \
snfCFGmgr.o \
snfGBUdbmgr.o \
snfLOGmgr.o \
snfNETmgr.o \
snfXCImgr.o


main.o: SNFServer/main.cpp \ main.o: SNFServer/main.cpp \
CodeDweller/timing.hpp \ CodeDweller/timing.hpp \

Loading…
Cancel
Save