Quellcode durchsuchen

dropped inline header requirements from makefile

master
Pete McNeil vor 4 Jahren
Ursprung
Commit
b8e3265ffa
1 geänderte Dateien mit 4 neuen und 6 gelöschten Zeilen
  1. 4
    6
      makefile

+ 4
- 6
makefile Datei anzeigen

@@ -46,7 +46,6 @@ target: main.o \
main.o: SNFServer/main.cpp \
CodeDweller/timing.hpp \
CodeDweller/networking.hpp \
CodeDweller/networking.inline.hpp \
CodeDweller/threading.hpp \
SNFMulti/snf_xci.hpp
$(CXX) $(CXXFLAGS) -c SNFServer/main.cpp
@@ -62,7 +61,7 @@ configuration.o: CodeDweller/configuration.cpp CodeDweller/configuration.hpp
mangler.o: CodeDweller/mangler.cpp CodeDweller/mangler.hpp
$(CXX) $(CXXFLAGS) -c CodeDweller/mangler.cpp

networking.o: CodeDweller/networking.cpp CodeDweller/networking.hpp CodeDweller/networking.inline.hpp
networking.o: CodeDweller/networking.cpp CodeDweller/networking.hpp
$(CXX) $(CXXFLAGS) -c CodeDweller/networking.cpp

timing.o: CodeDweller/timing.cpp CodeDweller/timing.hpp
@@ -90,7 +89,7 @@ SNFMulti.o: SNFMulti/SNFMulti.cpp \
CodeDweller/threading.hpp
$(CXX) $(CXXFLAGS) -c SNFMulti/SNFMulti.cpp

GBUdb.o: SNFMulti/GBUdb.cpp SNFMulti/GBUdb.hpp SNFMulti/GBUdb.inline.hpp
GBUdb.o: SNFMulti/GBUdb.cpp SNFMulti/GBUdb.hpp
$(CXX) $(CXXFLAGS) -c SNFMulti/GBUdb.cpp

FilterChain.o: SNFMulti/FilterChain.cpp SNFMulti/FilterChain.hpp
@@ -99,12 +98,11 @@ FilterChain.o: SNFMulti/FilterChain.cpp SNFMulti/FilterChain.hpp
snf_engine.o: SNFMulti/snf_engine.cpp SNFMulti/snf_engine.hpp
$(CXX) $(CXXFLAGS) -c SNFMulti/snf_engine.cpp

snfCFGmgr.o: SNFMulti/snfCFGmgr.cpp SNFMulti/snfCFGmgr.hpp SNFMulti/snfCFGmgr.inline.hpp SNFMulti/snf_HeaderFinder.hpp
snfCFGmgr.o: SNFMulti/snfCFGmgr.cpp SNFMulti/snfCFGmgr.hpp SNFMulti/snf_HeaderFinder.hpp
$(CXX) $(CXXFLAGS) -c SNFMulti/snfCFGmgr.cpp

snf_HeaderFinder.o: SNFMulti/snf_HeaderFinder.cpp \
SNFMulti/snf_HeaderFinder.hpp \
SNFMulti/snf_HeaderFinder.inline.hpp \
SNFMulti/snfLOGmgr.hpp \
SNFMulti/snfCFGmgr.hpp
$(CXX) $(CXXFLAGS) -c SNFMulti/snf_HeaderFinder.cpp
@@ -112,7 +110,7 @@ snf_HeaderFinder.o: SNFMulti/snf_HeaderFinder.cpp \
snfGBUdbmgr.o: SNFMulti/snfGBUdbmgr.cpp SNFMulti/snfGBUdbmgr.hpp
$(CXX) $(CXXFLAGS) -c SNFMulti/snfGBUdbmgr.cpp

snfLOGmgr.o: SNFMulti/snfLOGmgr.cpp SNFMulti/snfLOGmgr.hpp SNFMulti/snfLOGmgr.inline.hpp SNFMulti/snf_match.h
snfLOGmgr.o: SNFMulti/snfLOGmgr.cpp SNFMulti/snfLOGmgr.hpp SNFMulti/snf_match.h
$(CXX) $(CXXFLAGS) -c SNFMulti/snfLOGmgr.cpp

snfNETmgr.o: SNFMulti/snfNETmgr.cpp \

Laden…
Abbrechen
Speichern