aboutsummaryrefslogtreecommitdiff
path: root/build/autoconf/Makefile
diff options
context:
space:
mode:
authorIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2008-07-22 09:37:21 +0000
committerIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2008-07-22 09:37:21 +0000
commit8513aace10f69553228b00ec8a70f6223a91295d (patch)
treef57f5f0b52173aaadb41fcaecd98b6ba2d3ef0a7 /build/autoconf/Makefile
parentd0987a88a76cebf419f95f1052c2cff464a1fe93 (diff)
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
Diffstat (limited to 'build/autoconf/Makefile')
-rw-r--r--build/autoconf/Makefile4
1 files changed, 2 insertions, 2 deletions
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