about summary refs log tree commit diff
path: root/converter/other/pnmtopalm
diff options
context:
space:
mode:
authorgiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2008-12-03 20:00:33 +0000
committergiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2008-12-03 20:00:33 +0000
commitdc623704d3b6f4cadd2036c9627f2ac3054b6b0c (patch)
treed5fd4eb101701f85487f49e7087b5043fbe71bee /converter/other/pnmtopalm
parent5fcd32eee038bb0cba85f2bcb70a1b0824cf618a (diff)
downloadnetpbm-mirror-dc623704d3b6f4cadd2036c9627f2ac3054b6b0c.tar.gz
netpbm-mirror-dc623704d3b6f4cadd2036c9627f2ac3054b6b0c.tar.xz
netpbm-mirror-dc623704d3b6f4cadd2036c9627f2ac3054b6b0c.zip
Move LDFLAGS later
git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@775 9d0c8265-081b-0410-96cb-a4ca84ce46f8
Diffstat (limited to 'converter/other/pnmtopalm')
-rw-r--r--converter/other/pnmtopalm/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/converter/other/pnmtopalm/Makefile b/converter/other/pnmtopalm/Makefile
index 88fea049..7f99f95a 100644
--- a/converter/other/pnmtopalm/Makefile
+++ b/converter/other/pnmtopalm/Makefile
@@ -21,13 +21,13 @@ include $(SRCDIR)/common.mk
 LIBOPTS = $(shell $(LIBOPT) $(NETPBMLIB))
 
 $(BINARIES): %: %.o palmcolormap.o $(NETPBMLIB) $(LIBOPT)
-	$(LD) $(LDFLAGS) -o $@ $< palmcolormap.o $(LIBOPTS) \
-	  $(MATHLIB) $(LDLIBS) $(RPATH) $(LADD)
+	$(LD) -o $@ $< palmcolormap.o $(LIBOPTS) \
+	  $(MATHLIB) $(LDFLAGS) $(LDLIBS) $(RPATH) $(LADD)
 
 gen_palm_colormap : % : %.c palmcolormap.o
-	$(CC) -I importinc $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) -o $@ \
+	$(CC) -I importinc $(CPPFLAGS) $(CFLAGS) -o $@ \
 	  $< palmcolormap.o \
-	  $(LIBOPTS) $(MATHLIB) $(LDLIBS) $(LADD)
+	  $(LIBOPTS) $(MATHLIB) $(LDFLAGS) $(LDLIBS) $(LADD)
 
 
 clean: cleanspecial