diff options
author | Igor Zlatkovic <igor@src.gnome.org> | 2002-11-22 18:07:37 +0000 |
---|---|---|
committer | Igor Zlatkovic <igor@src.gnome.org> | 2002-11-22 18:07:37 +0000 |
commit | 002372e9d044a6db2575dd6dcdaf71f173ac209e (patch) | |
tree | f669f99f11a25bea9a40427b6f66aac78b29a7c2 /win32 | |
parent | ace7cd2ba053173de7e0f021756e54c5ca5d826b (diff) | |
download | libxml2-002372e9d044a6db2575dd6dcdaf71f173ac209e.tar.gz |
fixed unresolved symbols for mingw
Diffstat (limited to 'win32')
-rw-r--r-- | win32/Makefile.mingw | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win32/Makefile.mingw b/win32/Makefile.mingw index a812156e..3e6ea532 100644 --- a/win32/Makefile.mingw +++ b/win32/Makefile.mingw @@ -321,11 +321,11 @@ $(UTILS_INTDIR) : ifeq ($(STATIC),1) $(BINDIR)/%.exe : $(UTILS_SRCDIR)/%.c $(CC) -DLIBXML_STATIC $(CFLAGS) -o $(subst .c,.o,$(UTILS_INTDIR)/$(<F)) -c $< - $(LD) $(LDFLAGS) -o $@ -l$(XML_BASENAME) $(LIBS) $(subst .c,.o,$(UTILS_INTDIR)/$(<F)) + $(LD) $(LDFLAGS) -o $@ $(subst .c,.o,$(UTILS_INTDIR)/$(<F)) -l$(XML_BASENAME) $(LIBS) else $(BINDIR)/%.exe : $(UTILS_SRCDIR)/%.c $(CC) $(CFLAGS) -o $(subst .c,.o,$(UTILS_INTDIR)/$(<F)) -c $< - $(LD) $(LDFLAGS) -o $@ -l$(XML_BASENAME) $(subst .c,.o,$(UTILS_INTDIR)/$(<F)) + $(LD) $(LDFLAGS) -o $@ $(subst .c,.o,$(UTILS_INTDIR)/$(<F)) -l$(XML_BASENAME) $(LIBS) endif # Builds xmllint and friends. Uses the implicit rule for commands. |