summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2012-07-11 02:44:14 -0400
committerRich Felker <dalias@aerifal.cx>2012-07-11 02:44:14 -0400
commitfcaec912ed406659832f452e71a6c965308362dd (patch)
tree3164466a2bc9e17b5e34b95fa61bb731692eb4c1 /Makefile
parente864a29090459c98d106f6f74a16b3558e18fdca (diff)
downloadmusl-fcaec912ed406659832f452e71a6c965308362dd.tar.gz
changes to kernel sigaction struct handling in preparation for mips port
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
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