mirror of
https://github.com/AGWA/git-crypt.git
synced 2025-12-23 07:28:18 -08:00
16 lines
263 B
Makefile
16 lines
263 B
Makefile
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
|