diff options
author | Clifford Wolf <clifford@clifford.at> | 2017-07-17 09:03:55 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-17 09:03:55 +0200 |
commit | f06de9a436f0c59dcf6b38e994052218dcc22799 (patch) | |
tree | 3c9f0778ce075be8dd589a87bddb0ce42e5d9566 /icepack | |
parent | 3c42bdbf666d155f8703eda8ebf6dbd20a4e771b (diff) | |
parent | 4111f9cca58fb9fd9ed1858ac56524eff294ff11 (diff) | |
download | icestorm-f06de9a436f0c59dcf6b38e994052218dcc22799.tar.gz icestorm-f06de9a436f0c59dcf6b38e994052218dcc22799.tar.bz2 icestorm-f06de9a436f0c59dcf6b38e994052218dcc22799.zip |
Merge pull request #87 from rqou/master
Make install target work for Windows
Diffstat (limited to 'icepack')
-rw-r--r-- | icepack/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/icepack/Makefile b/icepack/Makefile index 2578fe0..65d4c9a 100644 --- a/icepack/Makefile +++ b/icepack/Makefile @@ -18,12 +18,12 @@ iceunpack.exe: install: all mkdir -p $(DESTDIR)$(PREFIX)/bin - cp icepack $(DESTDIR)$(PREFIX)/bin/icepack - ln -sf icepack $(DESTDIR)$(PREFIX)/bin/iceunpack + cp icepack$(EXE) $(DESTDIR)$(PREFIX)/bin/icepack$(EXE) + ln -sf icepack$(EXE) $(DESTDIR)$(PREFIX)/bin/iceunpack$(EXE) uninstall: - rm -f $(DESTDIR)$(PREFIX)/bin/icepack - rm -f $(DESTDIR)$(PREFIX)/bin/iceunpack + rm -f $(DESTDIR)$(PREFIX)/bin/icepack$(EXE) + rm -f $(DESTDIR)$(PREFIX)/bin/iceunpack$(EXE) clean: rm -f icepack |