# KallistiOS 0.6
#
# userland/lib/src/Makefile
# (c)2000 Dan Potter
#   
# $Id: Makefile,v 1.1 2000/11/09 05:25:42 bard Exp $

include ../../../Makefile.globals
INCS = -I../../include

# These were wrappers but are being deprecated in favor of using
# the libs directly.
# OBJS = libk.o fs.o ta.o spu.o

OBJS = libk.o

all: $(OBJS)
	-cp $(OBJS) ../build/

clean:
	-rm -f $(OBJS) *.bck

include ../../../Makefile.rules


