# THIS FILE WAS GENERATED AUTOMATICALLY # EDIT AT YOUR OWN RISK # # Makefile for tty2html # Copyright (c) 2005 Ian Piumarta # # All rights reserved. # # Permission is hereby granted, free of charge, to any person # obtaining a copy of this software and associated documentation files # (the 'Software'), to deal in the Software without restriction, # including without limitation the rights to use, copy, modify, merge, # publish, distribute, and/or sell copies of the Software, and to # permit persons to whom the Software is furnished to do so, provided # that the above copyright notice(s) and this permission notice appear # in all copies of the Software and that both the above copyright # notice(s) and this permission notice appear in supporting # documentation. # # THE SOFTWARE IS PROVIDED 'AS IS'. USE ENTIRELY AT YOUR OWN RISK. # last edited: 2005-11-03 02:58:15 by piumarta on emilia.local CFLAGS = -g -O PREFIX = /usr/local BINDIR = $(PREFIX)/bin MANDIR = $(PREFIX)/man MAN1DIR = $(MANDIR)/man1 all : tty2html tty2html : tty2html.c clean : .FORCE rm -f tty2html *~ .FORCE : install : .FORCE install -d $(BINDIR) install -d $(MANDIR) install -d $(MAN1DIR) install -c tty2html $(BINDIR)/tty2html install -c tty2html.1 $(MAN1DIR)/tty2html.1 uninstall : .FORCE rm -f $(BINDIR)/tty2html $(MAN1DIR)/tty2html.1