diff options
Diffstat (limited to 'mit-pthreads/bin/finger/Makefile.in')
-rwxr-xr-x | mit-pthreads/bin/finger/Makefile.in | 60 |
1 files changed, 0 insertions, 60 deletions
diff --git a/mit-pthreads/bin/finger/Makefile.in b/mit-pthreads/bin/finger/Makefile.in deleted file mode 100755 index ee20f47443d..00000000000 --- a/mit-pthreads/bin/finger/Makefile.in +++ /dev/null @@ -1,60 +0,0 @@ -# === makefile ============================================================ -# Copyright (c) 1993 Chris Provenzano, proven@athena.mit.edu -# -# Description: This file is for creating the test programs for libpthread.a -# -# 1.00 93/08/03 proven -# -Initial cut for pthreads. -# - -srctop = @srctop@ -srcdir = @srctop@/bin/finger -VPATH = @srctop@/bin/finger -prefix= @prefix@ -exec_prefix= @exec_prefix@ - -INSTALL_PATH = @exec_prefix@ - BINDIR = $(INSTALL_PATH)/bin - LIBDIR = $(INSTALL_PATH)/lib - MANDIR = $(INSTALL_PATH)/man - INCDIR = $(INSTALL_PATH)/include - - CC = ../../pgcc -notinstalled - CDEBUGFLAGS = @CFLAGS@ - INCLUDES = -I@srctop@/lib/libpthreadutil/ -L../../lib/libpthreadutil/ - CFLAGS = $(CDEBUGFLAGS) $(INCLUDES) $(ADDL_CFLAGS) -DSRCDIR=\"$(srcdir)\" - RANLIB = @RANLIB@ - - OBJS = finger.o net.o - BINARY = finger - -################################################################################ -# -all : $(BINARY) - -clean: - rm -f *.o $(TESTS) $(BENCHMARKS) a.out core maketmp makeout - -depend: - sed '/\#\#\# Dependencies/q' < Makefile > maketmp - (for i in $(CSRC);do $(CPP) -M $$i;done) >> maketmp - cp maketmp Makefile - -install: $(BINARY) - install $(BINARY) $(BINDIR) - -realclean: clean - rm -f Makefile - -Makefile: Makefile.in - (cd ../.. ; sh config.status) - -.c.o: - $(CC) $(CFLAGS) -c $< - -$(BINARY) : ${OBJS} - $(CC) $(CFLAGS) -o $(BINARY) ${OBJS} -lpthreadutil - -################################################################################ -### Do not remove the following line. It is for depend ######################### -### Dependencies: |