#
# makefile for file
#
# Copyright 1989 Edwin Hoogerbeets
#
# This code is freely redistributable as long as no charge other than
# reasonable copying fees is levied for it.
#

CFLAGS=+L
#-n -DDEBUG

LNDEBUG=
#-g

BINDIR=dh0:usr/local/bin

file: file.o
      ln file.o $(LNDEBUG) -lc32 -o $@

install: file
      cp -f file $(BINDIR)


