Quellcode durchsuchen

implemented static target in makefile, but there are warnings

master
Pete McNeil vor 4 Jahren
Ursprung
Commit
9e620a69b8
1 geänderte Dateien mit 44 neuen und 5 gelöschten Zeilen
  1. 44
    5
      makefile

+ 44
- 5
makefile Datei anzeigen

@@ -21,7 +21,8 @@ target: main.o \
snfLOGmgr.o \
snfNETmgr.o \
snfXCImgr.o
$(CXX) $(CXXFLAGS) main.o \
$(CXX) $(CXXFLAGS) -o bin/SNFServer \
main.o \
base64codec.o \
configuration.o \
mangler.o \
@@ -40,11 +41,49 @@ target: main.o \
snfGBUdbmgr.o \
snfLOGmgr.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 \
CodeDweller/timing.hpp \

Laden…
Abbrechen
Speichern