]> andersk Git - splint.git/blob - src/Makefile.sources
Initial revision
[splint.git] / src / Makefile.sources
1 ###
2 ### Makefile.sources
3 ###
4
5 SETSRC = globSet.c intSet.c typeIdSet.c guardSet.c usymIdSet.c sRefSet.c
6
7 LISTSRC = clauseStack.c filelocStack.c \
8    cstringList.c cstringSList.c sRefSetList.c ctypeList.c \
9    enumNameList.c enumNameSList.c exprNodeList.c exprNodeSList.c \
10    uentryList.c fileIdList.c filelocList.c qualList.c \
11    flagMarkerList.c idDeclList.c
12
13 CPPSRC = cppmain.c cpplib.c cppexp.c cpphash.c cpperror.c
14
15 CSRC = uentry.c cprim.c macrocache.c qual.c qtype.c specialClauses.c \
16    ctype.c cvar.c clabstract.c idDecl.c clause.c
17
18 LCLINTSRC = exprNode.c exprChecks.c llmain.c
19  CHECKSRC   = structNames.c aliasChecks.c varKinds.c nameChecks.c
20
21  GLOBSRC    = context.c globals.c flags.c general.c osd.c
22
23 GRAMS      = cgrammar.y cscanner.l llgrammar.y signature.y
24 GRAMSRC    = cgrammar.c cscanner.c 
25
26 GENERALSRC = cstring.c fileloc.c message.c source.c \
27     fileTable.c hashTable.c llerror.c messageLog.c \
28     flagMarker.c aliasTable.c ynm.c sRefTable.c \
29     ekind.c usymtab.c multiVal.c lltok.c sRef.c lcllib.c 
30
31 ###
32 ### These source files are relevant for LCL only.
33 ### Not uses if NOLCL is set.
34 ###
35
36 LCLONLYSRC = usymtab_interface.c abstract.c ltoken.c lclscanline.c \
37    lclsyntable.c lcltokentable.c sort.c symtable.c lclinit.c \
38    shift.c lclscan.c lsymbol.c mapping.c
39
40 LSLSRC    = tokentable.c scan.c scanline.c lslparse.c \
41    lh.c checking.c lclctypes.c imports.c lslinit.c syntable.c 
42
43 LCLGRAMS    = llgrammar.y signature.y
44 LCLGRAMSSRC = llgrammar.c signature.c
45
46 LCLSETSRC = lsymbolSet.c sigNodeSet.c lslOpSet.c sortSet.c
47
48 LCLLISTSRC = initDeclNodeList.c sortList.c declaratorInvNodeList.c \
49    interfaceNodeList.c sortSetList.c declaratorNodeList.c \
50    letDeclNodeList.c stDeclNodeList.c lslOpList.c storeRefNodeList.c \
51    lsymbolList.c termNodeList.c ltokenList.c traitRefNodeList.c \
52    pairNodeList.c typeNameNodeList.c fcnNodeList.c paramNodeList.c \
53    programNodeList.c varDeclarationNodeList.c varNodeList.c \
54    quantifierNodeList.c replaceNodeList.c importNodeList.c
55
56 ifeq ($(NOLCL), 1)
57 LCLSRC     =
58 else 
59 LCLSRC     = $(LCLSETSRC) $(LCLLISTSRC) $(LSLSRC) $(CMNSRC) $(LCLONLYSRC) $(LCLGRAMSSRC)
60 endif
61
62 COMMONSRC = $(CPPSRC) $(CSRC) $(CHECKSRC) $(GENERALSRC) $(GLOBSRC) \
63              $(IFACESRC) $(LISTSRC) $(SETSRC) $(LCLSRC) $(LCLGRAMSRC)
64
65 SRC        = $(COMMONSRC) $(LCLINTSRC)
66 ALLSRC     = $(SRC) $(GRAMSRC) 
67
68 ## all except cscanner.c
69 ALMOSTALLSRC = llgrammar.c cgrammar.c signature.c $(SRC)  
70 OBJ        = $(subst .c,.o,$(ALLSRC)) 
71
72 CHECKS     = $(subst .c,.check,$(SRC))
73
74 ALLHEADERS = 
75
76 SANITIZERSRC = $(COMMONSRC) cscanner.c sgrammar.c sNode.c sChecks.c sMain.c
77 SANITIZEROBJ = $(subst .c,.o,$(SANITIZERSRC))
78
79
80
81
82
This page took 0.094751 seconds and 5 git commands to generate.