From 02fec4701cee79f875c1d02b8b4aee09380dbcb8 Mon Sep 17 00:00:00 2001 From: Guillaume Cottenceau Date: Thu, 4 Jan 2001 20:04:45 +0000 Subject: integrate dietlibc/stdio per default for cdrom and disk only installs --- mdk-stage1/Makefile.common | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 mdk-stage1/Makefile.common (limited to 'mdk-stage1/Makefile.common') diff --git a/mdk-stage1/Makefile.common b/mdk-stage1/Makefile.common new file mode 100644 index 000000000..9d2d3f9f3 --- /dev/null +++ b/mdk-stage1/Makefile.common @@ -0,0 +1,40 @@ + # -*- makefile -*- + #****************************************************************************** + # + # Guillaume Cottenceau (gc@mandrakesoft.com) + # + # Copyright 2000 MandrakeSoft + # + # This software may be freely redistributed under the terms of the GNU + # public license. + # + # You should have received a copy of the GNU General Public License + # along with this program; if not, write to the Free Software + # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + # + #***************************************************************************** + + + #- default lib is dietlibc (honoured by main Makefile whenever possible) +L = DIETLIBC +# L = GLIBC + + #- default frontend is newt (honoured by main Makefile whenever possible) +F = NEWT +# F = STDIO + + +DIETLIBC_INCLUDES = -I$(top_dir)/dietlibc/include -I. +GLIBC_INCLUDES = -I. +INCLUDES = $($(L)_INCLUDES) + +GLIBC_LDFLAGS_STAGE1 = -static +DIETLIBC_LDFLAGS_STAGE1 = -nostdlib $(top_dir)/dietlibc/start.o +LDFLAGS_STAGE1 = $($(L)_LDFLAGS_STAGE1) + +GLIBC_LIBC = +DIETLIBC_LIBC = $(top_dir)/dietlibc/dietlibc.a +STAGE1_LIBC = $($(L)_LIBC) + +STRIPCMD = strip -R .note -R .comment + -- cgit v1.2.1