makefile.mk (7871dc3e) makefile.mk (e1fcf41e)
1#**************************************************************
2#
3# Licensed to the Apache Software Foundation (ASF) under one
4# or more contributor license agreements. See the NOTICE file
5# distributed with this work for additional information
6# regarding copyright ownership. The ASF licenses this file
7# to you under the Apache License, Version 2.0 (the
8# "License"); you may not use this file except in compliance

--- 17 unchanged lines hidden (view full) ---

26TARGET=qa_cppunit
27
28ENABLE_EXCEPTIONS=TRUE
29
30# --- Settings -----------------------------------------------------
31
32.INCLUDE : settings.mk
33
1#**************************************************************
2#
3# Licensed to the Apache Software Foundation (ASF) under one
4# or more contributor license agreements. See the NOTICE file
5# distributed with this work for additional information
6# regarding copyright ownership. The ASF licenses this file
7# to you under the Apache License, Version 2.0 (the
8# "License"); you may not use this file except in compliance

--- 17 unchanged lines hidden (view full) ---

26TARGET=qa_cppunit
27
28ENABLE_EXCEPTIONS=TRUE
29
30# --- Settings -----------------------------------------------------
31
32.INCLUDE : settings.mk
33
34.IF "$(WITH_CPPUNIT)" != "YES" || "$(GUI)" == "OS2"
34.IF "$(WITH_CPPUNIT)" != "YES"
35
36@all:
35
36@all:
37.IF "$(GUI)" == "OS2"
38 @echo "Skipping, cppunit broken."
39.ELIF "$(WITH_CPPUNIT)" != "YES"
40 @echo "cppunit disabled. nothing do do."
37 @echo "cppunit disabled. nothing do do."
41.END
42
38
43.ELSE # "$(WITH_CPPUNIT)" != "YES" || "$(GUI)" == "OS2"
39.ELSE # "$(WITH_CPPUNIT)" != "YES"
44
45#building with stlport, but cppunit was not built with stlport
46.IF "$(USE_SYSTEM_STL)"!="YES"
47.IF "$(SYSTEM_CPPUNIT)"=="YES"
48CFLAGSCXX+=-DADAPT_EXT_STL
49.ENDIF
50.ENDIF
51

--- 23 unchanged lines hidden (view full) ---

75# --- All object files ---------------------------------------------
76
77SLOFILES= \
78 $(SHL1OBJS) \
79
80
81# --- Targets ------------------------------------------------------
82
40
41#building with stlport, but cppunit was not built with stlport
42.IF "$(USE_SYSTEM_STL)"!="YES"
43.IF "$(SYSTEM_CPPUNIT)"=="YES"
44CFLAGSCXX+=-DADAPT_EXT_STL
45.ENDIF
46.ENDIF
47

--- 23 unchanged lines hidden (view full) ---

71# --- All object files ---------------------------------------------
72
73SLOFILES= \
74 $(SHL1OBJS) \
75
76
77# --- Targets ------------------------------------------------------
78
83.ENDIF # "$(WITH_CPPUNIT)" != "YES" || "$(GUI)" == "OS2"
79.ENDIF # "$(WITH_CPPUNIT)" != "YES"
84
85.INCLUDE : target.mk
86.INCLUDE : _cppunit.mk
87
80
81.INCLUDE : target.mk
82.INCLUDE : _cppunit.mk
83