#
# File: uEngine/.Makefile
# Authors: J. Painter,
#          K.R. Sloan
# Last Modified: 3 August 1990
# Purpose: maintain this puppy

ARCH = XARCH
CFLAGS = XCFLAGS -I../include

# everywhere else
all: RemoteuEngine.o

# on bezier (where we actually HAVE an IKONAS)
#all: uEngine.o  RemoteuEngine.o

RemoteuEngine.o: RemoteuEngine.c ../include/uEngine.h
uEngine.o: uEngine.c ../include/uEngine.h

install: all
	mv RemoteuEngine.o RemoteEngine.${ARCH}.o
	chmod a+r RemoteuEngine.${ARCH}.o
# only if you HAVE an IKONAS
#	mv uEngine.o uEngine.${ARCH}.o
#	chmod a+r uEngine.${ARCH}.o
	ls -l

clean: 
	rm -f *~ \#* *.ckp *.bak .emacs* core
	ls -l
