include default.mk

#CPPFLAGS =	# omit -DMINT if compiling for TOS
CPPFLAGS = -DMINT
LDFLAGS  = ux_misc.o modem.o

ALL      = getty who last more cat write passwd

all:	$(ALL)

$(ALL):	$(LDFLAGS)

clean:
	rm -f *.o

veryclean:
	rm -f *.o *.ttp

# This makefile is especially intended for use with the PURE-C compiler and
# the GNUMAKE utility, although it won't be difficult to alter it for any 
# other compiler.
#
# To build all these UNIX like tools it is advisable to have MINT running on
# your system. If not, you have to alter a few lines in the code, especially
# in the getty.c code.
#
# Any remarks or suggestions about these programs can be send to:
# lemmens@dv.twi.tudelft.nl


