Differences From Artifact [4602a2da2f]:

To Artifact [1eb9a58ccc]:


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
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











-










-
+


-
+


-
+


-
+


-
+


-
+


-
+


-
+







# Makefile for ffcall

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

# Directories used by "make install":
prefix = @prefix@
local_prefix = /usr/local
exec_prefix = @exec_prefix@
libdir = @libdir@
includedir = @includedir@
mandir = @mandir@
datarootdir = @datarootdir@

# Programs used by "make":
RM = rm -f
@SET_MAKE@

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

SHELL = /bin/sh

all : force
	cd @subdir@ && $(MAKE) all
	cd @subdir@; $(MAKE) all

install : force
	cd @subdir@ && $(MAKE) install
	cd @subdir@; $(MAKE) install

installdirs : force
	cd @subdir@ && $(MAKE) installdirs
	cd @subdir@; $(MAKE) installdirs

uninstall : force
	cd @subdir@ && $(MAKE) uninstall
	cd @subdir@; $(MAKE) uninstall

check : force
	cd @subdir@ && $(MAKE) check
	cd @subdir@; $(MAKE) check

extracheck : force
	cd @subdir@ && $(MAKE) extracheck
	cd @subdir@; $(MAKE) extracheck

mostlyclean : force
	cd @subdir@ && $(MAKE) mostlyclean
	cd @subdir@; $(MAKE) mostlyclean

clean : force
	cd @subdir@ && $(MAKE) clean
	cd @subdir@; $(MAKE) clean

distclean : force
	cd @subdir@; if test -f Makefile; then $(MAKE) distclean; fi
	$(RM) config.status config.log config.cache Makefile

maintainer-clean : force
	cd @subdir@; if test -f Makefile; then $(MAKE) maintainer-clean; fi