[xiph-commits] r15576 - trunk/gimp-montypak

xiphmont at svn.xiph.org xiphmont at svn.xiph.org
Fri Dec 12 21:12:15 PST 2008


Author: xiphmont
Date: 2008-12-12 21:12:14 -0800 (Fri, 12 Dec 2008)
New Revision: 15576

Modified:
   trunk/gimp-montypak/Makefile
Log:
Minor build fixes



Modified: trunk/gimp-montypak/Makefile
===================================================================
--- trunk/gimp-montypak/Makefile	2008-12-13 05:07:52 UTC (rev 15575)
+++ trunk/gimp-montypak/Makefile	2008-12-13 05:12:14 UTC (rev 15576)
@@ -13,8 +13,9 @@
 STRIP     = strip
 LDCONFIG  = /sbin/ldconfig
 
+TARGETS   = denoise scanclean
 VERSION   = $(MAJOR).$(MINOR).$(SUBMINOR)
-BINDIR    = $(PREFIX)//plug-ins
+BINDIR    = $(PREFIX)/plug-ins
 
 MAN	  =
 PKGARG	  = "gimp-2.0 gimpui-2.0 gtk+-2.0 >= 2.10 "
@@ -34,7 +35,7 @@
 	$(MAKE) montypak CFLAGS='-g -pg -O2 $(GCF) '
 
 clean:
-	rm -f *.o *.d *.d.* *.pc gmon.out $(TARGET)
+	rm -f *.o *.d *.d.* *.pc gmon.out $(TARGETS)
 
 distclean: clean
 	rm -f core core.* *~ 
@@ -46,7 +47,7 @@
 include $(SRC:.c=.d)
 endif
 
-montypak: denoise scanclean
+montypak: $(TARGETS)
 
 denoise.o: wavelet.c
 
@@ -55,10 +56,9 @@
 
 scanclean.o: blur.c
 
-scanclean: scanclean.o wavelet.c blur.c
+scanclean: scanclean.o 
 	$(LD) $< $(CFLAGS) -o $@ $(LIBS) $(LDF)
 
 install: all
 	$(INSTALL) -d -m 0755 $(BINDIR)
-	$(INSTALL) -m 0755 denoise $(BINDIR)
-	$(INSTALL) -m 0755 scanclean $(BINDIR)
+	$(INSTALL) -m 0755 $(TARGETS) $(BINDIR)



More information about the commits mailing list