diff options
author | Thomas Schwinge <tschwinge@gnu.org> | 2007-11-19 17:37:02 +0000 |
---|---|---|
committer | Thomas Schwinge <tschwinge@gnu.org> | 2007-11-19 17:37:02 +0000 |
commit | 0697fd051821d7b44b3c9ab2face57438e1a764a (patch) | |
tree | 53cb82aee9bd82907c9e53bf5ac5dcbed8ae84f3 | |
parent | b180c6076f787d1b7241153dc1a42f37262dd827 (diff) |
2007-11-19 Thomas Schwinge <tschwinge@gnu.org>
* Makefile (CFLAGS): Don't set and instead...
(CPPFLAGS): ... append the inclusion stuff to these.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | Makefile | 15 |
2 files changed, 13 insertions, 7 deletions
@@ -1,3 +1,8 @@ +2007-11-19 Thomas Schwinge <tschwinge@gnu.org> + + * Makefile (CFLAGS): Don't set and instead... + (CPPFLAGS): ... append the inclusion stuff to these. + 2007-08-02 Samuel Thibault <samuel.thibault@ens-lyon.org> * sysdeps/generic/bits/mutex.h (pthread_mutex_init) @@ -1,5 +1,5 @@ # -# Copyright (C) 1994,95,96,97,2000,02, 2004, 2005, 2006 +# Copyright (C) 1994, 1995, 1996, 1997, 2000, 2002, 2004, 2005, 2006, 2007 # Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or @@ -169,16 +169,17 @@ VPATH += $(SYSDEP_PATH) HURDLIBS = ihash -CFLAGS := -D_IO_MTSAFE_IO \ - $(addprefix -I, $(SYSDEP_PATH)) \ - -imacros $(srcdir)/include/libc-symbols.h \ - -imacros $(srcdir)/not-in-libc.h - installhdrs := -installhdrsubdir = . +installhdrsubdir := . include ../Makeconf +CPPFLAGS += \ + $(addprefix -I, $(SYSDEP_PATH)) \ + -imacros $(srcdir)/include/libc-symbols.h \ + -imacros $(srcdir)/not-in-libc.h + + install: install-headers $(libdir)/libpthread2.a $(libdir)/libpthread2_pic.a install-headers: $(addprefix $(includedir)/, $(sysdeps_headers)) |