diff options
author | giraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8> | 2008-12-04 17:37:03 +0000 |
---|---|---|
committer | giraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8> | 2008-12-04 17:37:03 +0000 |
commit | 30eb9c5000a7299f07b72fdc87ffd3634e6ca252 (patch) | |
tree | 3fc4f8adac46abf7a2bca9cb8611bd6715351024 /urt | |
parent | b55f3357507fb4d57a312546e8ac5eceefddbf2a (diff) | |
download | netpbm-mirror-30eb9c5000a7299f07b72fdc87ffd3634e6ca252.tar.gz netpbm-mirror-30eb9c5000a7299f07b72fdc87ffd3634e6ca252.tar.xz netpbm-mirror-30eb9c5000a7299f07b72fdc87ffd3634e6ca252.zip |
Put CFLAGS in right order so old Netpbm library doesn't get found first
git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@778 9d0c8265-081b-0410-96cb-a4ca84ce46f8
Diffstat (limited to 'urt')
-rw-r--r-- | urt/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/urt/Makefile b/urt/Makefile index c27174ac..b9eacaf9 100644 --- a/urt/Makefile +++ b/urt/Makefile @@ -24,8 +24,8 @@ librle.a: $(LIBOBJECTS) # Rule for objects. $(LIBOBJECTS): %.o: %.c importinc - $(CC) -c $(CPPFLAGS) $(CFLAGS) -I importinc -o $@ \ - $< $(CFLAGS_PERSONAL) $(CADD) + $(CC) -c -I importinc -o $@ \ + $< $(CPPFLAGS) $(CFLAGS) $(CFLAGS_PERSONAL) $(CADD) BINARIES = SCRIPTS = |