Changeset 389
- Timestamp:
- Mar 28, 2009, 11:49:49 AM (16 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/nom/Makefile.kmk
r388 r389 55 55 ifeq ($(BUILD_TARGET),win) 56 56 libnomobjtk_LIBS += $(PATH_LIB)/libnomgc$(SUFF_LIB) 57 e ndif57 else 58 58 ifeq ($(BUILD_TARGET),darwin_) 59 59 libnomobjtk_LIBS += /opt/local/lib/libgc.dylib 60 e ndif60 else 61 61 ifeq ($(BUILD_TARGET),freebsd) 62 62 libnomobjtk_LIBS += /usr/local/lib/libgc$(SUFF_DLL) 63 63 else 64 ifeq ($(BUILD_TARGET),linux) 65 libnomobjtk_LIBS += /usr/lib/libgc$(SUFF_DLL) 66 else 64 67 libnomobjtk_LIBS += $(PATH_LIB)/libnomgc$(SUFF_DLL) 68 endif 69 endif 70 endif 65 71 endif 66 72 -
trunk/nom/class_c/nomtestcase.c
r373 r389 82 82 83 83 /* Only Methods starting with ËtestË are run. */ 84 if( 0!=strnstr( methodName, "test", 4))84 if(strstr(methodName, "test")==methodName) 85 85 { 86 86 NOMTestResult* nResult=NOMTestResultNew(); -
trunk/tests/Makefile.kmk
r368 r389 93 93 94 94 95 test-nom_LIBS.linux = $(PATH_LIB)/libnomgc.so95 #test-nom_LIBS.linux = $(PATH_LIB)/libnomgc.so 96 96 97 97
Note:
See TracChangeset
for help on using the changeset viewer.