We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 701fb8e commit 0dec707Copy full SHA for 0dec707
Makefile
@@ -10,7 +10,7 @@ PREFIX ?= /usr/local
10
BINDIR ?= $(PREFIX)/bin
11
MANDIR ?= $(PREFIX)/share/man
12
13
-SYS := $(shell gcc -dumpmachine)
+SYS := $(shell $(CXX) -dumpmachine)
14
CYGWIN := $(findstring cygwin,$(SYS))
15
MINGW32 := $(findstring mingw32,$(SYS))
16
@@ -84,7 +84,7 @@ CLEAN_TARGETS := clean-bin $(CLEAN_MAN_TARGETS-$(ENABLE_MAN))
84
clean: $(CLEAN_TARGETS)
85
86
clean-bin:
87
- rm -f $(OBJFILES) git-crypt
+ rm -f $(OBJFILES) git-crypt git-crypt.exe
88
89
clean-man:
90
rm -f man/man1/git-crypt.1
0 commit comments