Initial version

This commit is contained in:
Andrew Ayer
2012-07-06 15:38:40 -07:00
commit 6e3dd5a8d3
9 changed files with 463 additions and 0 deletions

15
Makefile Normal file
View File

@@ -0,0 +1,15 @@
CXX := g++
CXXFLAGS := -Wall -pedantic -ansi -Wno-long-long -O2
LDFLAGS := -lcrypto
OBJFILES = git-crypt.o commands.o crypto.o util.o
all: git-crypt
git-crypt: $(OBJFILES)
$(CXX) $(CXXFLAGS) -o $@ $^ $(LDFLAGS)
clean:
rm -f *.o git-crypt
.PHONY: all clean