diff options
author | giraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8> | 2013-10-30 18:57:38 +0000 |
---|---|---|
committer | giraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8> | 2013-10-30 18:57:38 +0000 |
commit | 9f8b7230b969fde154cf06de3ee36fe14636371b (patch) | |
tree | f1c74fed6644663218ea987c4bd4104100a13ec4 /urt | |
parent | 6229105f5ce31e34b08dc656a71a919f313a11d7 (diff) | |
download | netpbm-mirror-9f8b7230b969fde154cf06de3ee36fe14636371b.tar.gz netpbm-mirror-9f8b7230b969fde154cf06de3ee36fe14636371b.tar.xz netpbm-mirror-9f8b7230b969fde154cf06de3ee36fe14636371b.zip |
Use SSE stuff with Clang as for GCC
git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@2027 9d0c8265-081b-0410-96cb-a4ca84ce46f8
Diffstat (limited to 'urt')
-rw-r--r-- | urt/Makefile | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/urt/Makefile b/urt/Makefile index b94da1b2..0aef5290 100644 --- a/urt/Makefile +++ b/urt/Makefile @@ -5,6 +5,8 @@ endif SUBDIR = urt VPATH=.:$(SRCDIR)/$(SUBDIR) +default: all + include $(BUILDDIR)/config.mk LIBOBJECTS = Runput.o cmd_name.o \ @@ -15,6 +17,9 @@ LIBOBJECTS = Runput.o cmd_name.o \ MERGE_OBJECTS = +OMIT_URT_RULE = 1 +include $(SRCDIR)/common.mk + all: librle.a librle.a: $(LIBOBJECTS) @@ -24,11 +29,8 @@ librle.a: $(LIBOBJECTS) # Rule for objects. $(LIBOBJECTS): %.o: %.c importinc - $(CC) -c $(INCLUDES) -o $@ \ - $< $(CPPFLAGS) $(CFLAGS) $(CFLAGS_PERSONAL) $(CADD) + $(CC) -c $(INCLUDES) -o $@ $< $(CFLAGS_ALL) BINARIES = SCRIPTS = -OMIT_URT_RULE = 1 -include $(SRCDIR)/common.mk |