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 /icepll | |
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 'icepll')
-rw-r--r-- | icepll/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/icepll/Makefile b/icepll/Makefile index 4efa4e1..87eabfa 100644 --- a/icepll/Makefile +++ b/icepll/Makefile @@ -11,10 +11,10 @@ icepll$(EXE): icepll.o install: all mkdir -p $(DESTDIR)$(PREFIX)/bin - cp icepll $(DESTDIR)$(PREFIX)/bin/icepll + cp icepll$(EXE) $(DESTDIR)$(PREFIX)/bin/icepll$(EXE) uninstall: - rm -f $(DESTDIR)$(PREFIX)/bin/icepll + rm -f $(DESTDIR)$(PREFIX)/bin/icepll$(EXE) clean: rm -f icepll |