File: Makefile

package info (click to toggle)
scilab 2.2-4
  • links: PTS
  • area: non-free
  • in suites: hamm
  • size: 31,472 kB
  • ctags: 21,963
  • sloc: fortran: 110,983; ansic: 89,717; makefile: 3,016; sh: 1,892; csh: 150; cpp: 101
file content (46 lines) | stat: -rw-r--r-- 1,033 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
SHELL = /bin/sh

SCIDIR=../..
include ../../Makefile.incl

CFLAGS = $(CC_OPTIONS)

FFLAGS = $(FC_OPTIONS)

LIBRARY = $(SCIDIR)/libs/metanet.a

OBJSC = metanet.o loadg.o saveg.o show.o connex.o dmtree.o paths.o \
	transc.o files.o myhsearch.o

OBJSF = arbor.o busack.o cfc.o chcm.o compc.o compfc.o dijkst.o \
	dfs.o dfs1.o eclat.o flomax.o floqua.o ford.o \
	frang.o frmtrs.o ftrans.o kilter.o kiltq.o johns.o match.o minty.o \
	mintyq.o pcchna.o prim.o prim1.o tconex.o \
	relax.o compmat.o

OBJS = $(OBJSC) $(OBJSF)

all:: $(LIBRARY)

world: all

$(LIBRARY): $(OBJS)
	@echo Creation of $(LIBRARY)
	@$(RM) $@
	@$(AR) $@ $(OBJS)
	@$(RANLIB) $@

clean::
	$(RM) $(OBJS)
distclean::
	$(RM) $(OBJS) $(LIBRARY)

metanet.o: ../machine.h ../comm/libCalCom.h ../comm/libCom.h
loadg.o: ../machine.h ../comm/libCom.h ../comm/libCalCom.h mysearch.h
saveg.o: ../machine.h
show.o: ../machine.h ../comm/libCalCom.h ../comm/libCom.h
connex.o: ../machine.h
dmtree.o: ../machine.h
paths.o: ../machine.h
transc.o: ../machine.h
myhsearch.o: mysearch.h