Add basic Makefile

github/master
str4d 2017-04-02 01:26:04 +13:00
parent 289b150909
commit a279dfd567
2 changed files with 11 additions and 0 deletions

2
.gitignore vendored 100644
View File

@ -0,0 +1,2 @@
*.o
*.a

9
Makefile 100644
View File

@ -0,0 +1,9 @@
SRCS=i2psam.cpp
OBJS=$(SRCS:.cpp=.o)
TARGET=libi2psam.a
$(TARGET): $(OBJS)
$(AR) $(ARFLAGS) $(TARGET) $(OBJS)
clean:
$(RM) $(TARGET) $(OBJS)