# Makefile for init.prg
CPPFLAGS = -DMINT

# Uncomment this next line if you have mntlib10 or below.
#EXTRALIBS = ../lib/libusers.a

# If you have a version of gettyent() in your library, remove the gettyent.o
# references from below.

init.prg: init.o getttyent.o $(EXTRALIBS)
	$(CC) -o $@ $(CFLAGS) init.o getttyent.o $(EXTRALIBS)

clean:
	-/bin/rm init.prg *.o
