blob: 82e2b4c8af140e9ce328f723828b885a3ae9d4d3 [file] [log] [blame]
# *****************************************************************************
# * Copyright (c) 2004, 2007 IBM Corporation
# * All rights reserved.
# * This program and the accompanying materials
# * are made available under the terms of the BSD License
# * which accompanies this distribution, and is available at
# * http://www.opensource.org/licenses/bsd-license.php
# *
# * Contributors:
# * IBM Corporation - initial implementation
# ****************************************************************************/
ifndef TOP
TOP = $(shell while ! test -e make.rules; do cd .. ; done; pwd)
export TOP
endif
include $(TOP)/make.rules
CFLAGS = -g -I$(TOP)/include -I$(LIBCMNDIR)/libc/include -O2 \
-fno-builtin -ffreestanding -nostdinc -msoft-float -Wall
LDFLAGS= -nostdlib
OBJS = socket/socket.o time/time.o sbrk.o io.o ioctl.o
SUBDIRS = $(filter-out ./,$(dir $(OBJS)))
all: libc-glue.o
libc-glue.o: subdirs sbrk.o io.o ioctl.o
$(LD) $(LDFLAGS) $(OBJS) -o $@ -r
subdirs :
for dir in $(SUBDIRS); do \
$(MAKE) -C $$dir DIRECTORY=$(DIRECTORY)$$dir || exit 1; \
done
clean:
$(RM) -f *.a *.o
@for dir in $(SUBDIRS); do \
$(CLEAN) ; \
$(MAKE) -C $$dir DIRECTORY=$(DIRECTORY)$$dir clean; \
done
include $(TOP)/make.depend