[go: up one dir, main page]

File: Makefile.msvc

package info (click to toggle)
ffcall 1.8-4.1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 4,752 kB
  • ctags: 3,102
  • sloc: asm: 19,563; ansic: 11,737; sh: 5,402; makefile: 885
file content (107 lines) | stat: -rw-r--r-- 1,909 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
# Makefile for ffcall

#### Start of system configuration section. ####

# Directories used by "make install":
prefix = /usr/local
local_prefix = /usr/local
exec_prefix = $(prefix)
libdir = $(exec_prefix)/lib
includedir = $(prefix)/include
mandir = $(exec_prefix)/man

# Programs used by "make":
RM = del

#### End of system configuration section. ####

SHELL = /bin/sh

all : force
	cd avcall
	$(MAKE) -f Makefile.msvc all
	cd ..
	cd vacall
	$(MAKE) -f Makefile.msvc all
	cd ..
	cd trampoline
	$(MAKE) -f Makefile.msvc all
	cd ..
	cd callback
	$(MAKE) -f Makefile.msvc all
	cd ..

check : force
	cd avcall
	$(MAKE) -f Makefile.msvc check
	cd ..
	cd vacall
	$(MAKE) -f Makefile.msvc check
	cd ..
	cd trampoline
	$(MAKE) -f Makefile.msvc check
	cd ..
	cd callback
	$(MAKE) -f Makefile.msvc check
	cd ..

mostlyclean : force
	cd avcall
	$(MAKE) -f Makefile.msvc mostlyclean
	cd ..
	cd vacall
	$(MAKE) -f Makefile.msvc mostlyclean
	cd ..
	cd trampoline
	$(MAKE) -f Makefile.msvc mostlyclean
	cd ..
	cd callback
	$(MAKE) -f Makefile.msvc mostlyclean
	cd ..

clean : force
	cd avcall
	$(MAKE) -f Makefile.msvc clean
	cd ..
	cd vacall
	$(MAKE) -f Makefile.msvc clean
	cd ..
	cd trampoline
	$(MAKE) -f Makefile.msvc clean
	cd ..
	cd callback
	$(MAKE) -f Makefile.msvc clean
	cd ..

distclean : force
	cd avcall
	$(MAKE) -f Makefile.msvc distclean
	cd ..
	cd vacall
	$(MAKE) -f Makefile.msvc distclean
	cd ..
	cd trampoline
	$(MAKE) -f Makefile.msvc distclean
	cd ..
	cd callback
	$(MAKE) -f Makefile.msvc distclean
	cd ..
	$(RM) config.status config.log config.cache Makefile

maintainer-clean : force
	cd avcall
	$(MAKE) -f Makefile.msvc maintainer-clean
	cd ..
	cd vacall
	$(MAKE) -f Makefile.msvc maintainer-clean
	cd ..
	cd trampoline
	$(MAKE) -f Makefile.msvc maintainer-clean
	cd ..
	cd callback
	$(MAKE) -f Makefile.msvc maintainer-clean
	cd ..
	$(RM) config.status config.log config.cache Makefile

force :