diff options
author | Rich Felker <dalias@aerifal.cx> | 2012-07-11 02:44:14 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2012-07-11 02:44:14 -0400 |
commit | fcaec912ed406659832f452e71a6c965308362dd (patch) | |
tree | 3164466a2bc9e17b5e34b95fa61bb731692eb4c1 /Makefile | |
parent | e864a29090459c98d106f6f74a16b3558e18fdca (diff) | |
download | musl-fcaec912ed406659832f452e71a6c965308362dd.tar.gz musl-fcaec912ed406659832f452e71a6c965308362dd.tar.xz musl-fcaec912ed406659832f452e71a6c965308362dd.zip |
changes to kernel sigaction struct handling in preparation for mips port
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile index 1bdea61e..0c134175 100644 --- a/Makefile +++ b/Makefile @@ -28,7 +28,7 @@ CFLAGS = -Os -pipe CFLAGS_C99FSE = -std=c99 -ffreestanding -nostdinc CFLAGS_ALL = $(CFLAGS_C99FSE) -CFLAGS_ALL += -D_XOPEN_SOURCE=700 -I./src/internal -I./include -I./arch/$(ARCH) +CFLAGS_ALL += -D_XOPEN_SOURCE=700 -I./arch/$(ARCH) -I./src/internal -I./include CFLAGS_ALL += $(CPPFLAGS) $(CFLAGS) CFLAGS_ALL_STATIC = $(CFLAGS_ALL) CFLAGS_ALL_SHARED = $(CFLAGS_ALL) -fPIC -DSHARED -O3 |