I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit a279dfd5 authored by str4d's avatar str4d
Browse files

Add basic Makefile

parent 289b1509
No related branches found
No related tags found
No related merge requests found
*.o
*.a
SRCS=i2psam.cpp
OBJS=$(SRCS:.cpp=.o)
TARGET=libi2psam.a
$(TARGET): $(OBJS)
$(AR) $(ARFLAGS) $(TARGET) $(OBJS)
clean:
$(RM) $(TARGET) $(OBJS)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment