Another MinGW example makefile tweak.

This commit is contained in:
Guenter Knauf 2011-09-21 18:21:05 +02:00
parent 3317160c19
commit 62b0fdca9e

View File

@ -215,10 +215,10 @@ curl_LDADD += -lws2_32
# Makefile.inc provides the check_PROGRAMS and COMPLICATED_EXAMPLES defines # Makefile.inc provides the check_PROGRAMS and COMPLICATED_EXAMPLES defines
include Makefile.inc include Makefile.inc
example_PROGRAMS := $(patsubst %,%.exe,$(strip $(check_PROGRAMS))) check_PROGRAMS := $(patsubst %,%.exe,$(strip $(check_PROGRAMS)))
all: $(example_PROGRAMS) all: $(check_PROGRAMS)
%.exe: %.o $(curl_DEPENDENCIES) %.exe: %.o $(curl_DEPENDENCIES)
$(CC) $(LDFLAGS) -o $@ $< $(curl_LDADD) $(CC) $(LDFLAGS) -o $@ $< $(curl_LDADD)
@ -230,8 +230,8 @@ all: $(example_PROGRAMS)
$(RC) $(RCFLAGS) $< -o $@ $(RC) $(RCFLAGS) $< -o $@
clean: clean:
$(RM) $(example_PROGRAMS:.exe=.o) -$(RM) $(check_PROGRAMS:.exe=.o)
distclean vclean: clean distclean vclean: clean
-$(RM) $(example_PROGRAMS) -$(RM) $(check_PROGRAMS)