Update the changelog
[opencv] / apps / Hawk / CVEiCL / EiC / module / stdClib / test / Makefile
1 #######################################
2 # define local information first 
3
4        TOP = ../../..
5 INCLUDES =  -I$(TOP)/include  -I$(TOP)/src  -I. -I-
6 LOCAL_LIB =  $(TOP)/lib/libstdClib.a     
7   
8 ########################################
9
10 include $(TOP)/make.proj
11
12 ########################################
13
14 SRCS = $(fopenSRCS) $(ctypeSRCS) $(printfSRCS) $(scanfSRCS)
15
16 install::
17
18 #############
19 fopenSRCS = testfopen.c
20 fopenOBJS = $(fopenSRCS:.c=.o)
21 testfopen: $(fopenOBJS)
22         $(CC) -o $@ $(fopenOBJS) $(LOCAL_LIB) -lm
23 all::testfopen
24 clean::
25         $(RM) testfopen $(fopenOBJS)
26 clobber::clean
27 ##############
28
29 #############
30 ctypeSRCS = testctype.c
31 ctypeOBJS = $(ctypeSRCS:.c=.o)
32 testctype: $(ctypeOBJS)
33         $(CC) -o $@ $(ctypeOBJS) $(LOCAL_LIB) -lm
34 all::testctype
35 clean::
36         $(RM) testctype $(ctypeOBJS)
37 clobber::clean
38 ############
39
40 #############
41 printfSRCS = testprintf.c
42 printfOBJS = $(printfSRCS:.c=.o)
43 testprintf: $(printfOBJS)
44         $(CC) -o $@ $(printfOBJS) $(LOCAL_LIB) -lm
45 all::testprintf
46 clean::
47         $(RM) testprintf $(printfOBJS)
48 clobber::clean
49 ############
50
51 #############
52 scanfSRCS = testscanf.c
53 scanfOBJS = $(scanfSRCS:.c=.o)
54 testscanf: $(scanfOBJS)
55         $(CC) -o $@ $(scanfOBJS) $(LOCAL_LIB) -lm
56 all::testscanf
57 clean::
58         $(RM) testscanf $(scanfOBJS)
59 clobber::clean
60 ############
61
62
63 ############################################################
64
65 include $(CONFIG_DIR)/make.rules
66
67
68
69
70
71
72
73