File: Makefile.top

package info (click to toggle)
cmix 2.0.12-1.1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 6,868 kB
  • ctags: 6,031
  • sloc: cpp: 28,952; ansic: 11,924; exp: 2,270; yacc: 1,724; sh: 1,713; makefile: 1,240; lex: 487; perl: 278
file content (153 lines) | stat: -rw-r--r-- 3,982 bytes parent folder | download | duplicates (3)
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
## @configure_input@ -*- Makefile -*-
## Authors:  Jens Peter Secher (jpsecher@diku.dk)
##           Henning Makholm (makholm@diku.dk)
##           Arne John Glenstrup (panic@diku.dk)
## Content:  C-Mix system: Common top matter for generated makefiles
##
## Copyright  1999. The TOPPS group at DIKU, U of Copenhagen.
## Redistribution and modification are allowed under certain
## terms; see the file COPYING.cmix for details.

#------------------------------------------
# TOOLS USED IN MAKEFILE
#------------------------------------------

# Part 0: compatibility
@SET_MAKE@
SHELL		= /bin/sh

# Part 1. Standard UNIX tools
# It should not be necessary to override these, but one never knows

CP		= cp
MV		= mv
RM		= rm -f
LN		= ln -f
LN_S		= ln -s
SED		= sed
TOUCH		= touch
CHMOD		= chmod
STRIP		= strip
TAR		= tar cf
GZIP		= gzip
GUNZIP		= gunzip

# Part 2: Nonstandard tools, which are not autoconfigurable

FIG2PS		= fig2dev -L ps
LATEX		= TEXINPUTS=$(srcdir):$$TEXINPUTS latex
DVIPS		= dvips

# Part 3: Autoconfed tools. Not all of these are expanded in all makefiles.

PERL		= @PERL@
YACC		= @YACC@
LEX		= @LEX@
CPP		= @STDCPP@
CXX		= @CXX@
CC		= @CC@
AR		= @AR@
RANLIB		= @RANLIB@
MKDEP		= @MKDEP@
INSTALL		= @INSTALL@

INSTALL_PROGRAM	= @INSTALL_PROGRAM@
INSTALL_SCRIPT  = @INSTALL_SCRIPT@
INSTALL_DATA	= @INSTALL_DATA@
STRIPFLAG	= -s

# Part 4: Flags

CPPFLAGS	= @CPPFLAGS@
CFLAGS		= @CFLAGS@
CXXFLAGS	= @CXXFLAGS@
LDFLAGS		= @LDFLAGS@
STATICLDFLAGS	= $(LDFLAGS) -static
MKDEPFLAGS	=

#------------------------------------------
# DIRECTORY INFORMATION
#------------------------------------------

srcdir		= @srcdir@
VPATH		= @srcdir@
top_srcdir	= @top_srcdir@@cmix_oneup@

prefix		= @prefix@
exec_prefix	= @exec_prefix@

bindir		= @bindir@
datadir		= @datadir@
includedir	= @includedir@
libdir		= @libdir@
libexecdir	= @libexecdir@
mandir		= @mandir@

#------------------------------------------
# MISCELLANEOUS
#------------------------------------------

EXEEXT		= @EXEEXT@
HAVE_LONG_FILE_NAMES = @HAVE_LONG_FILE_NAMES@

#------------------------------------------
# CANONICAL TARGETS
#------------------------------------------

main_goal:

floodingtargets = mostlyclean clean distclean toolclean realclean ajour depend
# common recursion through subdirectories can be implemented for all
# flooding targets with a single local rule such as
# $(floodingtargets):
#         cd some_subdir && $(MAKE) $@

.PHONY: Mostlyclean Clean Distclean Toolclean Realclean Ajour Depend
.PHONY: $(floodingtargets) all install uninstall info dvi ps dist check

# empty rules for the local cleansing actions. We hope that
# these will prevent old makes from complaining that they can't
# make the file if they find no explicit commands and still
# do not understand .PHONY
Mostlyclean:
Clean: Mostlyclean
Distclean: Clean
Toolclean: Clean
Realclean: Distclean Toolclean
Ajour:
Depend:
mostlyclean: Mostlyclean
clean: Clean
distclean: Distclean
toolclean: Toolclean
realclean: Realclean
ajour: Ajour
depend: Depend

# Common handling of install-strip
.PHONY: install-strip install-nostrip
install-strip:
	$(MAKE) install STRIPFLAG=-s
install-nostrip:
	$(MAKE) install STRIPFLAG=

# Cancel the built-in suffexes, but avoid complains from makes that think
# it is wrong to have no suffixes at all.
.SUFFIXES:
.SUFFIXES: not_a_real_suffix

# this rule allows a makefile to think it can make the config.status or
# cmixconf.h files in its parent directories itself. The point is that if
# they have already been deleted as part of a 'make distclean' the
# subdirectory Makefiles should be able to consider themselves up-to-date
# enough to commit their requested suicide.
../config.status ../cmixconf.h:
	:

# declare common dependencies for the configuration system
GNUmakefile Makefile: $(top_srcdir)/Makefile.top
configure: $(top_srcdir)/aclocal.m4

#------------------------------------------#
# END OF CANONICAL TOP MATTER              #
#------------------------------------------#