mirror of
https://github.com/AGWA/git-crypt.git
synced 2026-01-05 09:39:34 -08:00
Initial version
This commit is contained in:
15
Makefile
Normal file
15
Makefile
Normal 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
|
||||
Reference in New Issue
Block a user