CC= cc
CCFLAGS= -DKERNEL -Dsun4 -O  
CCF= $(CC) $(CCFLAGS)
AS=as
ASFLAGS=  -P
ASF= $(AS) $(ASFLAGS)


utimer.o:	utimer.c 
		$(CCF) -c utimer.c

# bring modules to my local disk:
#		cp utimer.o load utimer.exec /usr/private/utimer


test:		utimer.o utimer.c utest.c utimer.h
		$(CCF) -o utest utest.c


clean:	
	rm -f core *.o *.out 

