#
#   Creation Date: <1999/03/28 04:20:31 samuel>
#   Time-stamp: <2001/05/21 20:09:01 samuel>
#   
#	<Makefile>
#	
#	Rules for the lib.o target
#   
#   Copyright (C) 2001 Samuel Rydh (samuel@ibrium.se)
#   
#   This program is free software; you can redistribute it and/or
#   modify it under the terms of the GNU General Public License
#   as published by the Free Software Foundation
#

COSM_DIR1	= hfsplus
COSM_DIR2	= hfs

O_TARGET 	= lib.o
O_OBJS 		= $(addprefix obj/, elfload.o llseek.o fs.o os.o extralib.o ) \
		  $(addprefix hfsplus/obj/, blockiter.o btree.o hfstime.o libhfsp.o  \
			record.o unicode.o volume.o hfsp_fs.o ) \
		  $(addprefix hfs/obj/, block.o btree.o data.o file.o hfs.o low.o \
                        medium.o node.o record.o volume.o hfs_fs.o ) \

CFLAGS_EXTRA 	= $(CFLAGS_MM) -I$(SHEADERS_PATH) -I./include -I../include
CFLAGS_COSM1	= -Ihfsplus/include
CFLAGS_COSM2	= -Ihfs/include

include ../Rules.make

