makefile.mk (2407af08) | makefile.mk (0ffb4d95) |
---|---|
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 --- 19 unchanged lines hidden (view full) --- 28PRJ = ../.. 29PRJNAME = sal 30TARGET = qa_ByteSequence 31 32ENABLE_EXCEPTIONS = TRUE 33 34.INCLUDE: settings.mk 35 | 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 --- 19 unchanged lines hidden (view full) --- 28PRJ = ../.. 29PRJNAME = sal 30TARGET = qa_ByteSequence 31 32ENABLE_EXCEPTIONS = TRUE 33 34.INCLUDE: settings.mk 35 |
36CFLAGSCXX += $(CPPUNIT_CFLAGS) | 36.IF "$(ENABLE_UNIT_TESTS)" != "YES" 37all: 38 @echo unit tests are disabled. Nothing to do. 39 40.ELSE |
37 | 41 |
38SHL1IMPLIB = i$(SHL1TARGET) 39SHL1OBJS = $(SLO)/ByteSequence.obj 40SHL1RPATH = NONE 41SHL1STDLIBS = $(CPPUNITLIB) $(SALLIB) 42SHL1TARGET = rtl_ByteSequence 43SHL1VERSIONMAP = $(PRJ)/qa/export.map 44DEF1NAME = $(SHL1TARGET) | 42APP1OBJS = $(SLO)/ByteSequence.obj $(SLO)/main.obj 43APP1RPATH = NONE 44APP1STDLIBS = $(GTESTLIB) $(SALLIB) 45APP1TARGET = rtl_ByteSequence 46APP1TEST = enabled |
45 | 47 |
46SLOFILES = $(SHL1OBJS) 47 | |
48.INCLUDE: target.mk | 48.INCLUDE: target.mk |
49.INCLUDE: _cppunit.mk | |
50 | 49 |
51.END | 50.ENDIF # "$(ENABLE_UNIT_TESTS)" != "YES" 51 52.END # "$(OOO_SUBSEQUENT_TESTS)" == "" |