From 05440e4d62f9b0c242c1c040cb864ffe49a6908d Mon Sep 17 00:00:00 2001 From: Robert Ou Date: Wed, 15 Nov 2017 03:13:35 -0800 Subject: Fix up build system to work with emscripten --- icepack/Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'icepack') 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 -- cgit v1.2.3