home *** CD-ROM | disk | FTP | other *** search
Makefile | 1990-12-28 | 659 b | 25 lines |
- PROGNAME = stripsgml
-
- # Please edit these to reflect your local file structure & conventions.
- DESTDIR = /usr/local/bin
- OWNER = bin
- GROUP = bin
-
- SRC = $(PROGNAME).icn stripunb.icn readtbl.icn slashbal.icn
-
- $(PROGNAME): $(SRC)
- icont -o $(PROGNAME) $(SRC)
-
- # Pessimistic assumptions regarding the environment (in particular,
- # I don't assume you have the BSD "install" shell script).
- install: $(PROGNAME)
- @sh -c "test -d $(DESTDIR) || (mkdir $(DESTDIR) && chmod 755 $(DESTDIR))"
- cp $(PROGNAME) $(DESTDIR)/
- chgrp $(GROUP) $(DESTDIR)/$(PROGNAME)
- chown $(OWNER) $(DESTDIR)/$(PROGNAME)
- @echo "\nInstallation done.\n"
-
- clean:
- -rm -f *~ .u?
- -rm -f $(PROGNAME)
-