]> git.evergreen-ils.org Git - OpenSRF.git/blob - src/objson/Makefile
added the md5 server (opensrf.version)
[OpenSRF.git] / src / objson / Makefile
1 # --------------------------------------------------------------------
2 # Copyright (C) 2005  Georgia Public Library Service 
3 # Bill Erickson <highfalutin@gmail.com>
4 # Mike Rylander <mrylander@gmail.com>
5
6 # This program is free software; you can redistribute it and/or
7 # modify it under the terms of the GNU General Public License
8 # as published by the Free Software Foundation; either version 2
9 # of the License, or (at your option) any later version.
10
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 # GNU General Public License for more details.
15 # --------------------------------------------------------------------
16
17
18 # --------------------------------------------------------------------
19 #
20 # -DSTRICT_JSON_WRITE if not defined, 'null' objects will be written
21 #       as empty strings. e.g. [null, null] => [,,]
22 #
23 # -DSTRICT_JSON_READ if not defiend, empty array and object values
24 #       (not keys) will be considered null.
25 #       e.g. [,,{"key":}] will be parsed as [null, null, {"key":null}]
26 #
27 # --------------------------------------------------------------------
28
29 OBJS                            = md5.o utils.o object.o json_parser.o 
30 UTIL_DIR                        = ../utils
31 DEST_INCLUDE    = objson
32 CFLAGS                  += -DSTRICT_JSON_WRITE #-DSTRICT_JSON_READ
33
34 JSON_HEADERS = object.h json_parser.h
35
36 all:    test
37
38 test: libobjson.so objson_test.o
39
40 objson_test.o: objson_test.c 
41 object.o:       object.h object.c
42 json_parser.o:  json_parser.h json_parser.c
43
44 install:
45         mkdir -p $(INCLUDEDIR)/$(DEST_INCLUDE)
46         cp $(TMPDIR)/$(DEST_INCLUDE)/*.h $(INCLUDEDIR)/objson/
47         cp $(TMPDIR)/libobjson.so $(LIBDIR)/libobjson.so
48
49 libobjson.so:   $(OBJS)
50         $(CC) -shared -W1 $(OBJS) -o $(TMPDIR)/libobjson.so
51         $(CC) -shared -W1 $(OBJS) -o libobjson.so
52         mkdir -p $(TMPDIR)/$(DEST_INCLUDE)/
53         cp $(JSON_HEADERS) $(TMPDIR)/$(DEST_INCLUDE)/
54
55 utils.o:        $(UTIL_DIR)/utils.h $(UTIL_DIR)/utils.c
56         cp $(UTIL_DIR)/utils.h .
57         cp $(UTIL_DIR)/utils.c .
58         $(CC) -c $(CFLAGS) utils.c -o $@
59
60 md5.o:  $(UTIL_DIR)/md5.h $(UTIL_DIR)/md5.c
61         cp $(UTIL_DIR)/md5.h .
62         cp $(UTIL_DIR)/md5.c .
63         $(CC) -c $(CFLAGS) md5.c -o $@
64
65
66 clean:
67         /bin/rm -f *.o *.so utils.c utils.h libobjson.so
68