diff options
author | Robert Ou <rqou@robertou.com> | 2017-07-16 20:52:58 -0700 |
---|---|---|
committer | Robert Ou <rqou@robertou.com> | 2017-07-16 20:59:55 -0700 |
commit | 4111f9cca58fb9fd9ed1858ac56524eff294ff11 (patch) | |
tree | 3c9f0778ce075be8dd589a87bddb0ce42e5d9566 /icebram/Makefile | |
parent | 917afd1a853599034b101c9e035ee690560b46fa (diff) | |
download | icestorm-4111f9cca58fb9fd9ed1858ac56524eff294ff11.tar.gz icestorm-4111f9cca58fb9fd9ed1858ac56524eff294ff11.tar.bz2 icestorm-4111f9cca58fb9fd9ed1858ac56524eff294ff11.zip |
makefile: Make install target work for Windows
Diffstat (limited to 'icebram/Makefile')
-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 |