makefile.mk (27b2fc91) makefile.mk (88bfee53)
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

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

31LIBTARGET=NO
32
33# --- Settings ----------------------------------
34
35.INCLUDE : settings.mk
36
37# --- Files -------------------------------------
38
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

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

31LIBTARGET=NO
32
33# --- Settings ----------------------------------
34
35.INCLUDE : settings.mk
36
37# --- Files -------------------------------------
38
39.IF "$(ENABLE_COINMP)"=="NO"
40
41dummy:
42 @echo "Nothing to build (CoinMP is disabled)"
43
44.ELSE
45
39SLOFILES=$(SLO)$/solver.obj
40
41SRS1NAME=$(TARGET)
42SRC1FILES=solver.src
43
44# --- Library -----------------------------------
45
46SHL1TARGET= $(TARGET)$(DLLPOSTFIX)

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

75ALLTAR : $(MISC)/solver.component
76
77$(MISC)/solver.component .ERRREMOVE : $(SOLARENV)/bin/createcomponent.xslt \
78 solver.component
79 $(XSLTPROC) --nonet --stringparam uri \
80 '$(COMPONENTPREFIX_BASIS_NATIVE)$(SHL1TARGETN:f)' -o $@ \
81 $(SOLARENV)/bin/createcomponent.xslt solver.component
82
46SLOFILES=$(SLO)$/solver.obj
47
48SRS1NAME=$(TARGET)
49SRC1FILES=solver.src
50
51# --- Library -----------------------------------
52
53SHL1TARGET= $(TARGET)$(DLLPOSTFIX)

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

82ALLTAR : $(MISC)/solver.component
83
84$(MISC)/solver.component .ERRREMOVE : $(SOLARENV)/bin/createcomponent.xslt \
85 solver.component
86 $(XSLTPROC) --nonet --stringparam uri \
87 '$(COMPONENTPREFIX_BASIS_NATIVE)$(SHL1TARGETN:f)' -o $@ \
88 $(SOLARENV)/bin/createcomponent.xslt solver.component
89
90.ENDIF