From a519d2ab828517fda323f6421fd98cf73603fc0e Mon Sep 17 00:00:00 2001 From: Clifford Wolf Date: Sun, 14 Feb 2016 13:47:27 +0100 Subject: Added/improved support for mxe-based win32 cross builds --- icemulti/Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'icemulti/Makefile') diff --git a/icemulti/Makefile b/icemulti/Makefile index 387549d..c901413 100644 --- a/icemulti/Makefile +++ b/icemulti/Makefile @@ -2,9 +2,10 @@ include ../config.mk LDLIBS = -lm -lstdc++ CXXFLAGS = -MD -O0 -ggdb -Wall -std=c++11 -all: icemulti +all: icemulti$(EXE) -icemulti: icemulti.o +icemulti$(EXE): icemulti.o + $(CC) -o $@ $(LDFLAGS) $^ $(LDLIBS) install: all mkdir -p $(DESTDIR)$(PREFIX)/bin @@ -15,6 +16,7 @@ uninstall: clean: rm -f icemulti + rm -f icemulti.exe rm -f *.o *.d -include *.d -- cgit v1.2.3