Removed Makefile, because it is generated by ./configure anyway.

This commit is contained in:
Fritz Elfert 1997-03-22 21:34:04 +00:00
parent 4ef534de5d
commit 647b5045e6
1 changed files with 0 additions and 70 deletions

View File

@ -1,70 +0,0 @@
# Generated automatically from Makefile.in by configure.
# $Id$
#
# Makefile for avmcapictrl
# (C) 1997 Carsten Paeth
#
#
SHELL = /bin/sh
CFLAGS = -Wall -O2 -I.
LDFLAGS = -L../lib
PROGRAMS =
MODULES = avmcapictrl.o
MANPAGES =
INSTALL = /bin/install -c
INSTALL_PROGRAM = $(INSTALL) -o 0 -g 0 -m 0750
INSTALL_MAN = $(INSTALL) -o 0 -g 0 -m 0644
prefix = /usr
exec_prefix = ${prefix}
ifeq (../.config,$(wildcard ../.config))
include ../.config
SBINDIR = $(CONFIG_SBINDIR)
mandir = $(CONFIG_MANDIR)
ifeq ($(CONFIG_AVMCAPICTRL),y)
PROGRAMS += avmcapictrl
MANPAGES += avmcapictrl.8
endif
else
MANPAGES = avmcapictrl.8
SBINDIR = /sbin
mandir = @mandir@
endif
MAN8DIR = $(mandir)/man8
CC = gcc
%.8: %.man
cp $< $@
all: $(PROGRAMS) $(MANPAGES)
config:
@./configure
avmcapictrl: $(MODULES)
$(CC) $(CFLAGS) $? $(LDFLAGS) -o $@
install: $(PROGRAMS) $(MANPAGES)
mkdir -p $(SBINDIR)
$(INSTALL_PROGRAM) $(PROGRAMS) $(SBINDIR)
mkdir -p $(MAN8DIR)
$(INSTALL_MAN) $(MANPAGES) $(MAN8DIR)
install-strip: $(PROGRAMS) $(MANPAGES)
mkdir -p $(SBINDIR)
$(INSTALL_PROGRAM) -s $(PROGRAMS) $(SBINDIR)
mkdir -p $(MAN8DIR)
$(INSTALL_MAN) $(MANPAGES) $(MAN8DIR)
uninstall:
@for i in $(PROGRAMS) ; do \
rm -f $(SBINDIR)/$$i ; \
done
@for i in $(MANPAGES) ; do \
rm -f $(MAN8DIR)/$$i ; \
done
clean:
rm -f *.o *~ $(PROGRAMS) *.8
distclean: clean
rm -f config.status config.cache config.log Makefile