File: Makefile.in

package info (click to toggle)
wine 0.0.20000109-3
  • links: PTS
  • area: main
  • in suites: potato
  • size: 22,652 kB
  • ctags: 59,973
  • sloc: ansic: 342,054; perl: 3,697; yacc: 3,059; tcl: 2,647; makefile: 2,466; lex: 1,494; sh: 394
file content (68 lines) | stat: -rw-r--r-- 1,429 bytes parent folder | download
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
TOPSRCDIR = @top_srcdir@
TOPOBJDIR = ..
SRCDIR    = @srcdir@
VPATH     = @srcdir@
MODULE    = none
RCFLAGS   = -w32 -h
PROGRAMS  = expand hello hello2 hello3 hello4 hello5 new rolex vartest volinfo
ALL_LIBS  = $(WINELIB) $(X_LIBS) $(XLIB) $(LIBS)
WRCEXTRA  = -t -A -p $*

C_SRCS = \
	expand.c \
	hello.c \
	hello2.c \
	hello3.c \
	hello4.c \
	hello5.c \
	new.c \
	rolex.c \
	vartest.c \
	volinfo.c

RC_SRCS = \
	hello3res.rc

all: check_wrc $(PROGRAMS)

depend:: $(RC_SRCS:.rc=.h)

@MAKE_RULES@

$(RC_SRCS:.rc=.s): $(WRC)

$(WINESTUB):
	@cd ../library && $(SUBMAKE)

expand: expand.o $(WINESTUB)
	$(CC) -o expand expand.o $(LDOPTIONS) $(ALL_LIBS)

hello: hello.o $(WINESTUB)
	$(CC) -o hello hello.o $(LDOPTIONS) $(ALL_LIBS)

hello2: hello2.o $(WINESTUB)
	$(CC) -o hello2 hello2.o $(LDOPTIONS) $(ALL_LIBS)

hello3: hello3res.o hello3.o $(WINESTUB)
	$(CC) -o hello3 hello3.o hello3res.o $(LDOPTIONS) $(ALL_LIBS)
hello3.o: hello3res.h

hello4: hello4.o $(WINESTUB)
	$(CC) -o hello4 hello4.o $(LDOPTIONS) $(ALL_LIBS)

hello5: hello5.o $(WINESTUB)
	$(CC) -o hello5 hello5.o $(LDOPTIONS) $(ALL_LIBS)

new: new.o $(WINESTUB)
	$(CC) -o new new.o $(LDOPTIONS) $(ALL_LIBS)

rolex: rolex.o $(WINESTUB)
	$(CC) -o rolex rolex.o $(LDOPTIONS) $(ALL_LIBS)

vartest: vartest.o $(WINESTUB)
	$(CC) -o vartest vartest.o $(LDOPTIONS) $(ALL_LIBS)

volinfo: volinfo.o $(WINESTUB)
	$(CC) -o volinfo volinfo.o $(LDOPTIONS) $(ALL_LIBS)

### Dependencies: