From 8dcefc5dbdc87734cf71dc8be455e6fc6d0bcabd Mon Sep 17 00:00:00 2001 From: DRC Date: Fri, 19 Feb 2010 06:56:53 +0000 Subject: [PATCH] Oops. DLL object was misnamed and thus wasn't getting removed on 'make clean' --- win/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/win/Makefile b/win/Makefile index 35a16f51..951a560e 100755 --- a/win/Makefile +++ b/win/Makefile @@ -210,10 +210,10 @@ $(ODIR)/wrjpgcom.exe: $(ODIR)/wrjpgcom.obj $(ODIR)/jpeg.lib $(ODIR)/turbojpeg-static.lib: $(ODIR)/turbojpegl.obj $(LOBJS) $(AR) -out:$@ $^ -$(ODIR)/turbojpeg-dll.obj: turbojpegl.c +$(ODIR)/turbojpegl-dll.obj: turbojpegl.c $(CC) $(CFLAGS) -DDLLDEFINE -c $< -Fo$@ -$(ODIR)/turbojpeg.dll $(ODIR)/turbojpeg.lib: $(ODIR)/turbojpeg-dll.obj $(LOBJS) +$(ODIR)/turbojpeg.dll $(ODIR)/turbojpeg.lib: $(ODIR)/turbojpegl-dll.obj $(LOBJS) $(LINK) $(LDFLAGS) -dll -out:$(ODIR)/turbojpeg.dll \ -implib:$(ODIR)/turbojpeg.lib $^