#
# Copyright (c) 1998, 1999 University of Utah and the Flux Group.
# All rights reserved.
# 
# This file is part of the Flux OSKit.  The OSKit is free software, also known
# as "open source;" you can redistribute it and/or modify it under the terms
# of the GNU General Public License (GPL), version 2, as published by the Free
# Software Foundation (FSF).  To explore alternate licensing terms, contact
# the University of Utah at csl-dist@cs.utah.edu or +1-801-585-3271.
# 
# The OSKit is distributed in the hope that it will be useful, but WITHOUT ANY
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
# FOR A PARTICULAR PURPOSE.  See the GPL for more details.  You should have
# received a copy of the GPL along with the OSKit; see the file COPYING.  If
# not, write to the FSF, 59 Temple Place #330, Boston, MA 02111-1307, USA.
#

ifndef _oskit_unix_freebsd_makerules_
_oskit_unix_freebsd_makerules_ = yes

PTHREAD_OBJ += 
UNIXLIB_OBJ += net.o sendeth.o socket.o

SRCDIRS	     += $(OSKIT_SRCDIR)/unix/freebsd
#INCDIRS      += $(OSKIT_SRCDIR)/oskit \

ERROBJ	      = $(OBJDIR)/freebsd/net/error.o

#
# These two are special (in a bad way). They need /usr/include stuff
# cause of ioctls and other junk that is defined differently in the
# OSKIT header files.
#
sendeth.o:	sendeth.c
	$(CC) -c -o $@ -I- -I/usr/include $(OSKIT_CFLAGS) $(CFLAGS) $<

net.o:		net.c
	$(CC) -c -o $@ $(OSKIT_CFLAGS) $(CFLAGS) -I/usr/include $<

socket.o:	socket.c
	$(CC) -c -o $@ $(OSKIT_CFLAGS) $(CFLAGS) -I/usr/include $<

irq.o:	irq.c
	$(CC) -c -o $@ $(OSKIT_CFLAGS) $(CFLAGS) -I/usr/include $<

filesystem.o:	filesystem.c
	$(CC) -c -o $@ $(OSKIT_CFLAGS) $(CFLAGS) -DKERNEL $<

bmodfs.o:	bmodfs.c
	$(CC) -c -o $@ $(OSKIT_CFLAGS) $(CFLAGS) -I/usr/include $<


ifeq (${UNIX_OBJFORMAT}, elf)
include $(OSKIT_SRCDIR)/unix/elf/GNUmakerules
else
STARTFILES = crt0.o

crt0.o:		crt0.c
	$(CC) -c -o $@ -DOSKIT -DCRT0 -DDYNAMIC $<
	${LD} -O $@ -x -r $@

startup: $(STARTFILES) $(addprefix $(OBJDIR)/lib/unix/, $(STARTFILES))

$(OBJDIR)/lib/unix/%: %
	test -d $(OBJDIR)/lib/unix || mkdir $(OBJDIR)/lib/unix
	cp $< $@
endif

endif
