diff options
author | Robert Ou <rqou@robertou.com> | 2017-11-15 03:13:35 -0800 |
---|---|---|
committer | Robert Ou <rqou@robertou.com> | 2017-11-15 03:13:35 -0800 |
commit | 05440e4d62f9b0c242c1c040cb864ffe49a6908d (patch) | |
tree | d5394e928dc4831292207109154c3d4a6ec422cd /icepack | |
parent | 539cf999dd7fe0a837b72af83c4b1c335b6eafe4 (diff) | |
download | icestorm-05440e4d62f9b0c242c1c040cb864ffe49a6908d.tar.gz icestorm-05440e4d62f9b0c242c1c040cb864ffe49a6908d.tar.bz2 icestorm-05440e4d62f9b0c242c1c040cb864ffe49a6908d.zip |
Fix up build system to work with emscripten
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 65d4c9a..3e8c774 100644 --- a/icepack/Makefile +++ b/icepack/Makefile @@ -10,8 +10,8 @@ all: icepack$(EXE) iceunpack$(EXE) icepack$(EXE): icepack.o $(CXX) -o $@ $(LDFLAGS) $^ $(LDLIBS) -iceunpack: icepack - ln -sf icepack iceunpack +iceunpack$(EXE): icepack$(EXE) + ln -sf icepack$(EXE) iceunpack$(EXE) iceunpack.exe: # no iceunpack.exe, use icepack -u @@ -26,8 +26,8 @@ uninstall: rm -f $(DESTDIR)$(PREFIX)/bin/iceunpack$(EXE) clean: - rm -f icepack - rm -f iceunpack + rm -f icepack$(EXE) + rm -f iceunpack$(EXE) rm -f icepack.exe rm -f *.o *.d |