diff options
author | Mattias Andrée <maandree@operamail.com> | 2014-05-21 19:57:24 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2014-05-21 19:57:24 +0200 |
commit | a178a7d7859137d457900dd1b03a76408f6a7ce5 (patch) | |
tree | 92427e8e70d2af8ff39f5be75a212f8b27be8d9b /Makefile | |
parent | misc (diff) | |
download | libgamma-a178a7d7859137d457900dd1b03a76408f6a7ce5.tar.gz libgamma-a178a7d7859137d457900dd1b03a76408f6a7ce5.tar.bz2 libgamma-a178a7d7859137d457900dd1b03a76408f6a7ce5.tar.xz |
misc
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 11 |
1 files changed, 6 insertions, 5 deletions
@@ -4,10 +4,6 @@ # without any warranty. -# Include configurations from `./configure`. -include config.mk - - # The package path prefix, if you want to install to another root, set DESTDIR to that root. PREFIX ?= /usr # The library path excluding prefix. @@ -62,13 +58,18 @@ endif C_FLAGS = $(OPTIMISE) $(WARN) -std=$(STD) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) \ -ftree-vrp -fstrict-aliasing -fipa-pure-const -fstack-usage \ -fstrict-overflow -funsafe-loop-optimizations -fno-builtin \ - $(DEBUG_FLAGS) $(DEFINITIONS) + $(DEBUG_FLAGS) $(DEFINITIONS) -DLIBGAMMA_CONFIG_H # Object files for the library. LIBOBJ = libgamma-facade +# Include configurations from `./configure`. +include config.mk + + + # Build rules. .PHONY: all |