aboutsummaryrefslogtreecommitdiff
path: root/win
diff options
context:
space:
mode:
authordcommander <dcommander@632fc199-4ca6-4c93-a231-07263d6284db>2010-02-19 06:56:53 +0000
committerdcommander <dcommander@632fc199-4ca6-4c93-a231-07263d6284db>2010-02-19 06:56:53 +0000
commitc63aedc9c21554a2144b0601403d291463f60594 (patch)
tree3a690123b268de9d7967ee5f68ce2083cd9913d5 /win
parent028904f2a8e7f053af3223d181e6daa42b38a67e (diff)
Oops. DLL object was misnamed and thus wasn't getting removed on 'make clean'
git-svn-id: svn://svn.code.sf.net/p/libjpeg-turbo/code/trunk@128 632fc199-4ca6-4c93-a231-07263d6284db
Diffstat (limited to 'win')
-rwxr-xr-xwin/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/win/Makefile b/win/Makefile
index 35a16f5..951a560 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 $^