# Makefile for Amiga Linux lib source directory 
#
# Copyright 1993 by Hamish Macdonald
#
# This file is subject to the terms and conditions of the GNU General Public 
# License.  See the file "README.legal" in the main directory of this archive
# for more details.
 

CFLAGS=-Wall -DKERNEL -b linux -nostdinc -I/dev/linux/include -O2

OBJS  = ctype.o _exit.o open.o close.o errno.o write.o dup.o setsid.o \
	execve.o wait.o string.o malloc.o

lib.a: $(OBJS)
	$(AR) -rc lib.a $(OBJS)
	ranlib lib.a

clean:
	rm -f *.o *.a
