File: Makefile.in

package info (click to toggle)
libcdk5 5.0.20161210-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 3,440 kB
  • ctags: 2,833
  • sloc: ansic: 32,375; sh: 4,732; makefile: 1,122; sed: 43; cpp: 41
file content (167 lines) | stat: -rw-r--r-- 3,785 bytes parent folder | download | duplicates (2)
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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
# $Id: Makefile.in,v 1.22 2016/11/20 19:41:20 tom Exp $
#
# Makefile for the examples directory.
#
SHELL		= /bin/sh

prefix		= @prefix@
exec_prefix	= @exec_prefix@

srcdir		= @srcdir@
VPATH		= $(srcdir)

CC		= @CC@
RM		= rm -f
CTAGS		= @CTAGS@
ETAGS		= @ETAGS@
LINT		= @LINT@
LINT_OPTS	= @LINT_OPTS@

LIBS		= -l@LIB_ROOTNAME@ @LIBS@

LIBTOOL		= @LIBTOOL@ @ECHO_LT@
LIBTOOL_CLEAN	= @LIB_CLEAN@
LIBTOOL_LINK	= @LIB_LINK@
LINK		= $(LIBTOOL_LINK)

x		= @EXEEXT@
o		= .@OBJEXT@
LOCAL_LIBDIR	= @top_builddir@

CFLAGS		= @CFLAGS@ @EXTRA_CFLAGS@
CPPFLAGS	= @DEFS@ -I../include -I$(srcdir)/../include -I../ -I/usr/include/cdk -I. @CPPFLAGS@
LDFLAGS		= -L.. @LDFLAGS@ @LOCAL_LDFLAGS@

BINS	= \
	alphalist_ex$x \
	bind_ex$x \
	buttonbox_ex$x \
	calendar_ex$x \
	cdkscreen_ex$x \
	dialog_ex$x \
	entry_ex$x \
	fscale_ex$x \
	fselect_ex$x \
	fslider_ex$x \
	graph_ex$x \
	hello_ex$x \
	histogram_ex$x \
	itemlist_ex$x \
	label_ex$x \
	lowerCDKObject_ex$x \
	marquee_ex$x \
	matrix_ex$x \
	mentry_ex$x \
	menu_ex$x \
	position_ex$x \
	preprocess_ex$x \
	radio1_ex$x \
	radio_ex$x \
	raiseCDKObject_ex$x \
	scale_ex$x \
	scroll_ex$x \
	selection_ex$x \
	slider_ex$x \
	subwindow_ex$x \
	swindow_ex$x \
	template_ex$x \
	traverse_ex$x \
	uslider_ex$x \
	viewer_ex$x \
	viewer_ex2$x

CDKSRC	= \
	alphalist_ex.c \
	bind_ex.c \
	buttonbox_ex.c \
	calendar_ex.c \
	cdkscreen_ex.c \
	dialog_ex.c \
	entry_ex.c \
	fscale_ex.c \
	fselect_ex.c \
	fslider_ex.c \
	graph_ex.c \
	hello_ex.c \
	histogram_ex.c \
	itemlist_ex.c \
	label_ex.c \
	lowerCDKObject_ex.c \
	marquee_ex.c \
	matrix_ex.c \
	mentry_ex.c \
	menu_ex.c \
	position_ex.c \
	preprocess_ex.c \
	radio1_ex.c \
	radio_ex.c \
	raiseCDKObject_ex.c \
	scale_ex.c \
	scroll_ex.c \
	selection_ex.c \
	slider_ex.c \
	subwindow_ex.c \
	swindow_ex.c \
	template_ex.c \
	traverse_ex.c \
	uslider_ex.c \
	viewer_ex.c \
	viewer_ex2.c

LINKIT	= @ECHO_LD@$(LINK) $(CFLAGS) $(CPPFLAGS) $? -o $@ $(LDFLAGS) $(LIBS)

all : $(BINS)

alphalist_ex$x :	alphalist_ex.c		; $(LINKIT)
bind_ex$x :		bind_ex.c		; $(LINKIT)
buttonbox_ex$x :	buttonbox_ex.c		; $(LINKIT)
calendar_ex$x :		calendar_ex.c		; $(LINKIT)
cdkscreen_ex$x :	cdkscreen_ex.c		; $(LINKIT)
dialog_ex$x :		dialog_ex.c		; $(LINKIT)
entry_ex$x :		entry_ex.c		; $(LINKIT)
fscale_ex$x :		fscale_ex.c		; $(LINKIT)
fselect_ex$x :		fselect_ex.c		; $(LINKIT)
fslider_ex$x :		fslider_ex.c		; $(LINKIT)
graph_ex$x :		graph_ex.c		; $(LINKIT)
hello_ex$x :		hello_ex.c		; $(LINKIT)
histogram_ex$x :	histogram_ex.c		; $(LINKIT)
itemlist_ex$x :		itemlist_ex.c		; $(LINKIT)
label_ex$x :		label_ex.c		; $(LINKIT)
lowerCDKObject_ex$x :	lowerCDKObject_ex.c	; $(LINKIT)
marquee_ex$x :		marquee_ex.c		; $(LINKIT)
matrix_ex$x :		matrix_ex.c		; $(LINKIT)
mentry_ex$x :		mentry_ex.c		; $(LINKIT)
menu_ex$x :		menu_ex.c		; $(LINKIT)
position_ex$x :		position_ex.c		; $(LINKIT)
preprocess_ex$x :	preprocess_ex.c		; $(LINKIT)
radio1_ex$x :		radio1_ex.c		; $(LINKIT)
radio_ex$x :		radio_ex.c		; $(LINKIT)
raiseCDKObject_ex$x :	raiseCDKObject_ex.c	; $(LINKIT)
scale_ex$x :		scale_ex.c		; $(LINKIT)
scroll_ex$x :		scroll_ex.c		; $(LINKIT)
selection_ex$x :	selection_ex.c		; $(LINKIT)
slider_ex$x :		slider_ex.c		; $(LINKIT)
subwindow_ex$x :	subwindow_ex.c		; $(LINKIT)
swindow_ex$x :		swindow_ex.c		; $(LINKIT)
template_ex$x :		template_ex.c		; $(LINKIT)
traverse_ex$x :		traverse_ex.c		; $(LINKIT)
uslider_ex$x :		uslider_ex.c		; $(LINKIT)
viewer_ex$x :		viewer_ex.c		; $(LINKIT)
viewer_ex2$x :		viewer_ex2.c		; $(LINKIT)
#
# Standard clean directives.
#
clean::
	-$(LIBTOOL_CLEAN) $(RM) *.o core $(BINS)

distclean:: clean
	$(RM) Makefile

@MAKE_LOWER_TAGS@tags :
@MAKE_LOWER_TAGS@	$(CTAGS) *.[ch] */*.[ch]

@MAKE_LOWER_TAGS@TAGS :
@MAKE_LOWER_TAGS@	$(ETAGS) *.[ch] */*.[ch]

lint: $(CDKSRC)
	$(LINT) $(LINT_OPTS) $(CPPFLAGS) $(CDKSRC)