mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-04-27 11:17:49 +02:00
allow CXXFLAGS to be set without overwriting needed flags
This commit is contained in:
parent
5acbc6a23e
commit
6681e25513
3 changed files with 6 additions and 5 deletions
2
Makefile
2
Makefile
|
@ -17,7 +17,7 @@ i2p: $(OBJECTS:obj/%=obj/%)
|
|||
.SUFFIXES: .c .cc .C .cpp .o
|
||||
|
||||
obj/%.o : %.cpp
|
||||
$(CXX) -o $@ $< -c $(CXXFLAGS) $(INCFLAGS) $(CPU_FLAGS)
|
||||
$(CXX) -o $@ $< -c $(CXXFLAGS) $(NEEDED_CXXFLAGS) $(INCFLAGS) $(CPU_FLAGS)
|
||||
|
||||
obj:
|
||||
mkdir -p obj
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue