From 8513aace10f69553228b00ec8a70f6223a91295d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?IOhannes=20m=20zm=C3=B6lnig?= <zmoelnig@users.sourceforge.net> Date: Tue, 22 Jul 2008 09:37:21 +0000 Subject: updated to use LDFLAGS instead of LFLAGS and cc instead of ld as suggested by federico (bug#2021648) svn path=/trunk/externals/zexy/; revision=10195 --- build/autoconf/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'build/autoconf/Makefile') diff --git a/build/autoconf/Makefile b/build/autoconf/Makefile index efaff3e..d15103a 100644 --- a/build/autoconf/Makefile +++ b/build/autoconf/Makefile @@ -51,11 +51,11 @@ all: $(OBJECTS) endif $(OBJECTS): %.$(EXT) : %.o - $(LD) $(LFLAGS) -o $@ $*.o $(LIBS) + $(CC) $(LDFLAGS) -o $@ $*.o $(LIBS) $(STRIP) $(STRIPFLAGS) $@ $(LIBNAME): $(TARGETS) z_zexy.c z_zexy.h - $(LD) $(LFLAGS) -o $@.$(EXT) $(SOURCEDIR)/*.o $(LIBS) + $(CC) $(LDFLAGS) -o $@.$(EXT) $(SOURCEDIR)/*.o $(LIBS) $(STRIP) $(STRIPFLAGS) $@.$(EXT) $(TARGETS): %.o : %.c -- cgit v1.2.1