]> andersk Git - splint.git/blob - test/db1/Makefile
8a669cbd6c80c8070f802ab4d28a8200a35d1575
[splint.git] / test / db1 / Makefile
1 ###
2 ### LCLint db1 test
3 ###
4 ### Taken from sample, second iteration: weakchecks
5 ###
6
7 .SUFFIXES: .lcl .lcs .lh .h .c .o
8 .PHONY: check clean
9
10 SHELL = /bin/csh -f
11
12 LCLINT = lclint -booltype bool
13 LCL = $(LCLINT) -specundef +lh +quiet -nof
14 LCLINTLH = $(LCLINT) +lh
15 LCSFILES = bool.lcs dbase.lcs employee.lcs empset.lcs erc.lcs eref.lcs ereftab.lcs 
16
17 MODULES = bool.lcl employee eref empset ereftab erc dbase drive.c
18 OBJS = dbase.o employee.o empset.o erc.o eref.o ereftab.o 
19
20 test: 
21         $(MAKE) -e clean
22         $(MAKE) -e check
23
24 ###
25 ### Removed +showscan, produces different results on different platforms
26 ###
27
28 check: $(LCSFILES)
29         $(LCLINT) -showcol -weak $(MODULES) -expect 16
30         $(LCLINT) -showcol +strict -modfilesystem +showsummary $(MODULES) -expect 333
31
32 ### The following rules generate .lh and .lcs files from .lcl files.  They also
33 ### ensure that .h files appear to be updated whenever the corresponding .lh
34 ### file is updated.
35
36 .lcl.lh:
37         $(LCL) $*.lcl
38
39 .lcl.lcs:
40         $(LCL) $*.lcl
41
42 .lh.h:
43         touch $*.h
44
45 .c.o:
46         $(GCC) -c $*.c 
47
48 ###
49 ### Clean removes junk and all derived files.
50 ### Tidy removes junk and object and executable files.
51 ###
52
53 clean: tidy
54         -@rm -f *.c.html *.lcl.html *.h.html *.lh.html *.lcs *.lh >& /dev/null
55
56 tidy:
57         -@rm -f ,* .,* *.CKP *.BAK .emacs_[0-9]* core a.out *.*~ *~ *.o drive >& /dev/null
58
59 ### The following dependencies ensure that imported LCL specs 
60 ### are checked before the specs that import them.
61
62 dbase.lcs:   employee.lcs empset.lcs 
63 empset.lcs:  employee.lcs
64 erc.lcs:     eref.lcs
65 eref.lcl:    employee.lcs
66 ereftab.lcs: employee.lcs eref.lcs
67
68 ### The following dependencies ensure that a .o file is recompiled when the
69 ### corresponding .c file, or one of the .h files it #includes, is changed.
70
71 dbase.o:    dbase.c bool.h dbase.h employee.h empset.h
72 drive.o:    drive.c bool.h dbase.h employee.h empset.h erc.h eref.h ereftab.h 
73 employee.o: employee.c employee.h 
74 empset.o:   empset.c bool.h empset.h erc.h eref.h employee.h employee.h 
75 erc.o:      erc.c bool.h erc.h eref.h employee.h 
76 eref.o:     eref.c eref.h employee.h 
77 ereftab.o:  ereftab.c bool.h ereftab.h erc.h eref.h employee.h 
This page took 0.025661 seconds and 3 git commands to generate.