From 0879c2dadfe9f6998bdcddf837918ed8617d17b4 Mon Sep 17 00:00:00 2001 From: Matthias Badaire Date: Wed, 30 May 2001 14:31:23 +0000 Subject: - allow build on ia64 - have CFLAGS centralized in Makefile.common (should help ports such as alpha) - better looking sub makefiles --- mdk-stage1/Makefile.common | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'mdk-stage1/Makefile.common') diff --git a/mdk-stage1/Makefile.common b/mdk-stage1/Makefile.common index d4aae4bac..58b43bcd7 100644 --- a/mdk-stage1/Makefile.common +++ b/mdk-stage1/Makefile.common @@ -19,12 +19,21 @@ ARCH := $(patsubst sparc%,sparc,$(ARCH)) #- default lib is dietlibc (honoured by main Makefile whenever possible) L = DIETLIBC -# L = GLIBC +#L = GLIBC #- default frontend is newt (honoured by main Makefile whenever possible) F = NEWT # F = STDIO + #- override in some situations +ifeq (ia64, $(ARCH)) +L = GLIBC +endif + + + #- flags used by all stuff +CFLAGS = -Os -pipe -Wall -Werror -fomit-frame-pointer + DIETLIBC_INCLUDES = -I$(top_dir)/dietlibc/include -I. GLIBC_INCLUDES = -I. -- cgit v1.2.1