# custom AMGR makefile

SHELL=/bin/sh
CC = cc 
INCLUDE = $(UUINCLUDE)
CFLAGS = $(INCLUDE) -g
LFLAGS = # -Wl,-n	# used by NCR Tower32, forces shareable text

OBJS = chooktb.o disp_txt.o get_fld_no.o edit_txt.o show_txt.o text_size.o \
		 week_day.o to_upper.o 

amgr0887:	$(OBJS)
		LDFLAGS="$LFLAGS"; export LDFLAGS; amgr.ld amgr0887 $(OBJS)

install:	
		mv amgr0887 $(UNIFY)/../bin

clean:
	/bin/rm *~ *.o
