##############################################################################
# This file is part of a software distribution, which is furnished under the #
# terms of a license. Use of this software by any means is subject to this #
# license and signifies the acceptance of the licensing terms stated #
# therein. Please see the file LICENSE in the top-level directory of this #
# software distribution for detailed copyright disclaimers and licensing #
# terms. #
##############################################################################
# Copryight (c) by Andreas S. Wetzel - All rights reserved. #
##############################################################################
# $Id: Makefile.in,v 1.3 2001/10/28 00:58:42 mickey Exp $
SHELL = @SHELL@
CC = @CC@
prefix = @prefix@
exec_prefix = @exec_prefix@
srcdir = @srcdir@
CFLAGS = @CFLAGS@
CPPFLAGS = @CPPFLAGS@ -I./include
DEFS = @DEFS@
DISTCLNFILES = Makefile
COMMONSRCS = clock.c \
commands.c \
ed_funcs.c \
heartbeat.c \
microtime.c \
network.c \
screen.c \
sigctl.c \
statusbar.c \
snake.c \
subr.c \
tcap.c \
verror.c
COMMONOBJS = clock.o \
commands.o \
ed_funcs.o \
heartbeat.o \
microtime.o \
network.o \
screen.o \
sigctl.o \
statusbar.o \
snake.o \
subr.o \
tcap.o \
verror.o
all: depend libvclient.a
libvclient.a: $(COMMONOBJS)
ar rs libvclient.a ${COMMONOBJS}
.c.o:
${CC} ${CFLAGS} ${CPPFLAGS} ${DEFS} -c $<
depend: ${COMMONSRCS} Makefile
rm -f .depend
${CC} -M ${CPPFLAGS} ${COMMONSRCS} > .depend
clean:
rm -f $(COMMONOBJS) libvclient.a
rm -f .depend
install:
uninstall:
Makefile: Makefile.in ../../config.status
(cd ../.. ; ./config.status)
syntax highlighted by Code2HTML, v. 0.9.1