File tree 2 files changed +17
-1
lines changed 2 files changed +17
-1
lines changed Original file line number Diff line number Diff line change @@ -42,11 +42,14 @@ jsoncpp_lib_static.dir/
42
42
/src /Makefile
43
43
/src /jsontestrunner /Makefile
44
44
/src /jsontestrunner /jsontestrunner_exe
45
- /src /lib_json /Makefile
46
45
/src /test_lib_json /Makefile
47
46
/src /test_lib_json /jsoncpp_test
48
47
49
48
# eclipse project files
50
49
.project
51
50
.cproject
52
51
/.settings /
52
+
53
+ # CyberCalc custom build
54
+ src /lib_json /* .a
55
+ src /lib_json /* .o
Original file line number Diff line number Diff line change
1
+ HEADERS =json_tool.h ../../include/json/allocator.h ../../include/json/assertions.h ../../include/json/autolink.h ../../include/json/config.h ../../include/json/features.h ../../include/json/forwards.h ../../include/json/json.h ../../include/json/reader.h ../../include/json/value.h ../../include/json/version.h ../../include/json/writer.h
2
+ OBJECTS =json_reader.o json_value.o json_writer.o
3
+
4
+ default : libjsoncpp.a
5
+
6
+ % .o : % .cpp $(HEADERS )
7
+ g++ -c -I../../include -o $@ $<
8
+
9
+ libjsoncpp.a : $(OBJECTS )
10
+ ar rcs libjsoncpp.a $(OBJECTS )
11
+
12
+ clean :
13
+ rm -f libjsoncpp.a $(OBJECTS )
You can’t perform that action at this time.
0 commit comments