# Newabs Makefile
#
# Author: Guto

include	$(EPOS)/makedefs

all: install

tolower: tolower.c
	cc -O tolower.c -o tolower

toupper: toupper.c
	cc -O toupper.c -o toupper

install: tolower toupper newabs
	$(INSTALL) tolower toupper newabs $(BIN)

print:
	$(PRINT1) newabs $(PRINT2)

clean:
	$(CLEAN) tolower toupper