Use foo.o instead of foo.dll.o to enable Make Object (Windows build)

This commit is contained in:
Nick Treleaven 2011-11-16 13:40:23 +00:00
parent 048e6a6c3c
commit 58729d4de9

View File

@ -6,7 +6,7 @@ PREFIX = C:\libs
RM = del
-include ../localwin32.mk
.SUFFIXES:
.SUFFIXES: .c .dll
.SUFFIXES: .c .o .dll
GTK_INCLUDES= \
-I$(PREFIX)/include/gtk-2.0 \
@ -46,9 +46,11 @@ endif
all: plugins
.c.dll:
$(CC) $(CFLAGS) $(DEFINES) $(INCLUDEDIRS) -o $@.o -c $<
$(CC) -shared $@.o $(ALL_GTK_LIBS) $(DLL_LD_FLAGS) -o $@
.c.o:
$(CC) $(CFLAGS) $(DEFINES) $(INCLUDEDIRS) -o $@ -c $<
.o.dll:
$(CC) -shared $< $(ALL_GTK_LIBS) $(DLL_LD_FLAGS) -o $@
plugins: \
htmlchars.dll \