osx-debug.mk

Fri, 21 Jun 2013 11:18:24 +0200

author
Olaf Wintermann <olaf.wintermann@gmail.com>
date
Fri, 21 Jun 2013 11:18:24 +0200
changeset 106
a54115d554f7
parent 104
9d3dea320d8e
child 152
3238f65db163
permissions
-rw-r--r--

fixed makefiles for ms c++ compiler

universe@83 1 #
universe@83 2 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
universe@83 3 #
universe@103 4 # Copyright 2013 Olaf Wintermann. All rights reserved.
universe@83 5 #
universe@83 6 # Redistribution and use in source and binary forms, with or without
universe@83 7 # modification, are permitted provided that the following conditions are met:
universe@83 8 #
universe@83 9 # 1. Redistributions of source code must retain the above copyright
universe@83 10 # notice, this list of conditions and the following disclaimer.
universe@83 11 #
universe@83 12 # 2. Redistributions in binary form must reproduce the above copyright
universe@83 13 # notice, this list of conditions and the following disclaimer in the
universe@83 14 # documentation and/or other materials provided with the distribution.
universe@83 15 #
universe@83 16 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
universe@83 17 # AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
universe@83 18 # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
universe@83 19 # ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
universe@83 20 # LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
universe@83 21 # CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
universe@83 22 # SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
universe@83 23 # INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
universe@83 24 # CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
universe@83 25 # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
universe@83 26 # POSSIBILITY OF SUCH DAMAGE.
universe@83 27 #
universe@83 28
olaf@104 29 CC = cc
olaf@104 30 LD = cc
universe@83 31 AR = ar
universe@83 32 RM = rm
universe@83 33
olaf@104 34 CFLAGS = -g -c
olaf@106 35 COFLAGS = -o ./
universe@83 36 LDFLAGS =
olaf@106 37 LOFLAGS = -o ./
universe@83 38 ARFLAGS = -r
universe@83 39 RMFLAGS = -f
universe@83 40
universe@83 41 OBJ_EXT = o
universe@83 42 LIB_EXT = a
universe@83 43 APP_EXT =
universe@83 44

mercurial