# # Makefile for zotnet/bboards subdirectory # # $Id$ # SHELL = /bin/sh top_srcdir = @top_srcdir@ srcdir = @srcdir@ VPATH = @srcdir@ CC = @CC@ CFLAGS = @CFLAGS@ DEFS = @DEFS@ INCLUDES = -I../.. -I$(srcdir) -I$(top_srcdir) LINT = @LINT@ LINTFLAGS = @LINTFLAGS@ COMPILE = $(CC) -c $(DEFS) $(INCLUDES) $(CFLAGS) .SUFFIXES: .SUFFIXES: .c .o .c.o: $(COMPILE) $< # header files HDRS = bboards.h # source files SRCS = getbbent.c # object files OBJS = getbbent.o # auxiliary files AUX = Makefile.in # all files in this directory included in the distribution DIST = $(HDRS) $(SRCS) $(AUX) # ========= DEPENDENCIES FOR BUILDING ========== all: $(OBJS) install: uninstall: # ========== DEPENDENCIES FOR CLEANUP ========== mostlyclean: rm -f *.o *~ clean: mostlyclean distclean: clean rm -f Makefile realclean: distclean superclean: realclean # ========== DEPENDENCIES FOR LINT ================= lint: $(LINT) $(LINTFLAGS) $(INCLUDES) $(DEFS) $(SRCS) # ========== DEPENDENCIES FOR MAINTENANCE ========== subdir = zotnet/bboards Makefile: Makefile.in ../../config.status cd ../.. && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= ./config.status distdir = ../../`cat ../../distname`/$(subdir) nmhdist: $(DIST) @echo "Copying distribution files in $(subdir)" @for file in $(DIST); do \ cp -p $(srcdir)/$$file $(distdir); \ done