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 /icebram | |
| parent | 3c42bdbf666d155f8703eda8ebf6dbd20a4e771b (diff) | |
| parent | 4111f9cca58fb9fd9ed1858ac56524eff294ff11 (diff) | |
Merge pull request #87 from rqou/master
Make install target work for Windows
Diffstat (limited to 'icebram')
| -rw-r--r-- | icebram/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/icebram/Makefile b/icebram/Makefile index d16b80b..3904926 100644 --- a/icebram/Makefile +++ b/icebram/Makefile @@ -14,10 +14,10 @@ test: icebram install: all mkdir -p $(DESTDIR)$(PREFIX)/bin - cp icebram $(DESTDIR)$(PREFIX)/bin/icebram + cp icebram$(EXE) $(DESTDIR)$(PREFIX)/bin/icebram$(EXE) uninstall: - rm -f $(DESTDIR)$(PREFIX)/bin/icebram + rm -f $(DESTDIR)$(PREFIX)/bin/icebram$(EXE) clean: rm -f icebram |
