diff options
author | giraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8> | 2008-12-03 20:00:33 +0000 |
---|---|---|
committer | giraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8> | 2008-12-03 20:00:33 +0000 |
commit | dc623704d3b6f4cadd2036c9627f2ac3054b6b0c (patch) | |
tree | d5fd4eb101701f85487f49e7087b5043fbe71bee /converter/other/jbig/Makefile | |
parent | 5fcd32eee038bb0cba85f2bcb70a1b0824cf618a (diff) | |
download | netpbm-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/jbig/Makefile')
-rw-r--r-- | converter/other/jbig/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/converter/other/jbig/Makefile b/converter/other/jbig/Makefile index 0c079dfe..b5f4e14a 100644 --- a/converter/other/jbig/Makefile +++ b/converter/other/jbig/Makefile @@ -36,9 +36,9 @@ all: $(BINARIES) include $(SRCDIR)/common.mk $(BINARIES): %: %.o $(JBIGLIB_DEP) $(NETPBMLIB) $(LIBOPT) - $(LD) $(LDFLAGS) -o $@ $< \ - $(shell $(LIBOPT) $(NETPBMLIB) $(JBIGLIB)) $(MATHLIB) $(LDLIBS) \ - $(RPATH) $(LADD) + $(LD) -o $@ $< \ + $(shell $(LIBOPT) $(NETPBMLIB) $(JBIGLIB)) $(MATHLIB) \ + $(LDFLAGS) $(LDLIBS) $(RPATH) $(LADD) $(BUILDDIR)/$(SUBDIR)/libjbig.a: $(LIBJBIG_OBJECTS) |