# @(#) $Id: Makefile,v 6.10.1.1 2013-09-12 16:13:19 ralph Exp $
# -----------------------------------------------------------------------------------------
# (c) 1997-2013 by Ralph Roth  -*- http://rose.rult.at -*-

# $Header: /home/cvs/cfg2html/cfg2html/linux/packaging/Makefile,v 6.10.1.1 2013-09-12 16:13:19 ralph Exp $
# A simple Debian makefile for cfg2html-linux

# DESTDIR modified by Jacques MENGUY, have to check it first :)
DESTDIR = /root/cfg2html
ARCH =

PREFIX = $(DESTDIR)/usr
BINDIR = $(PREFIX)/bin
MANDIR = $(PREFIX)/share/man/man8
CONFDIR= $(DESTDIR)/etc/cfg2html

all:
	# nothing to do

clean:
	rm -f *~

install:
	install cfg2html-aix $(BINDIR)
	install cfg2html $(BINDIR)
	install cfg2html-aix.8 $(MANDIR)
	install -d $(CONFDIR)
	install -m 644 files $(CONFDIR)
	install -m 644 systeminfo $(CONFDIR)
	install -m 644 plugins $(CONFDIR)

.PHONY: all clean install
