Files
i2psam/Makefile

16 lines
275 B
Makefile
Raw Permalink Normal View History

2017-12-02 05:30:58 +13:00
CXXFLAGS=-Werror -Wall -Wextra -Wno-unused-parameter -std=c++11 -g
2017-04-02 01:26:04 +13:00
SRCS=i2psam.cpp
OBJS=$(SRCS:.cpp=.o)
TARGET=libi2psam.a
$(TARGET): $(OBJS)
2024-09-15 19:32:25 -04:00
$(AR) $(ARFLAGS) $(TARGET) $(OBJS)
2017-04-02 01:26:04 +13:00
2017-04-02 11:34:23 +12:00
LOADLIBES=-L./ -li2psam
eepget: eepget.cpp $(TARGET)
2017-04-02 01:26:04 +13:00
clean:
2024-09-15 19:32:25 -04:00
$(RM) $(TARGET) $(OBJS) eepget