#
# Makefile for 
#
TARGET = nfs.xfs

SHELL = /bin/sh
SUBDIRS = ksocket

srcdir = .
top_srcdir = ../..
subdir = nfs

default: all

include $(top_srcdir)/CONFIGVARS
include $(top_srcdir)/RULES
include $(top_srcdir)/PHONY

all-here: $(TARGET)

# default overwrites
INCLUDES = -I$(top_srcdir)
DEFINITIONS = 
LD = $(CC) -nostdlib -Wl,--entry -Wl,_init
LIBS = -Lksocket/ -lksocket16 $(LIBKERN) -lgcc
CPU = 000

# default definitions
OBJS = $(COBJS:.c=.o)

$(TARGET): $(OBJS) $(LIBKERNTARGET)
	$(LD) $(CFLAGS) -o $@ $(OBJS) $(LIBS)
	$(STRIP) $@


include $(top_srcdir)/DEPENDENCIES
