blob: 7e346bd5980fa37ffc6ec7b3ab92961d0055f4cf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
# Makefile for distributing files. Note that it only has a dist-dir
# target, so other targets should not recurse into this directory.
# This makefile is in the public domain.
#### Start of system configuration section. ####
srcdir = @srcdir@
top_srcdir = @top_srcdir@
VPATH = @srcdir@
# Just in case...
SHELL = /bin/sh
@SET_MAKE@
DISTFILES = \
.cvsignore ChangeLog Makefile.in README.txt \
SCC.mak SCC.dsp scc.c scc.def pubscc.h
all:
.PHONY: all
dist-dir: ${DISTFILES}
mkdir ${DISTDIR}
for i in ${DISTFILES}; do \
ln $(srcdir)/$${i} ${DISTDIR}; \
done
.PHONY: dist-dir
subdir = windows-NT/SCC
Makefile: ../../config.status Makefile.in
cd ../.. && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= ./config.status
# CYGNUS LOCAL: don't depend on auto-re-config
#../config.status: ../configure
# cd .. ; $(SHELL) config.status --recheck
# CYGNUS LOCAL: don't depend on auto-re-config
#../configure: ../configure.in
# cd $(top_srcdir) ; autoconf
|