# 
# Makefile for shared library functions
#
# x-kernel v3.1	12/10/90
#
# Copyright (C) 1990  Larry L. Peterson and Norman C. Hutchinson
#

#
#   ("make" is run in  the "vax" or "sun" subdirectory, not here.)


CFLAGS = -O2 -I../../share -I../../protocols -I../../mi -I../../sun3 -DMSGOPT

OBJ = \
	mapnet.o \
	maptable.o \
	uidmapper.o \
	uidmapper18.o \
	uidmapper22.o \


shared.ls:	$(OBJ) ../shared/Makefile
		echo $(OBJ) >shared.ls

mapnet.o:	../shared/mapnet.c	; $(CC) -c $(CFLAGS) ../shared/$*.c
maptable.o:	../shared/maptable.c	; $(CC) -c $(CFLAGS) ../shared/$*.c
uidmapper.o:	../shared/uidmapper.c	; $(CC) -c $(CFLAGS) ../shared/$*.c
uidmapper18.o:	../shared/uidmapper18.c	; $(CC) -c $(CFLAGS) ../shared/$*.c
uidmapper22.o:	../shared/uidmapper22.c	; $(CC) -c $(CFLAGS) ../shared/$*.c
