From 22f703cab05b7cd368f4de9e03991b7664dc5022 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Frings-F=C3=BCrst?= Date: Mon, 1 Sep 2014 13:56:46 +0200 Subject: Initial import of argyll version 1.5.1-8 --- imdi/Makefile.OSX | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 imdi/Makefile.OSX (limited to 'imdi/Makefile.OSX') diff --git a/imdi/Makefile.OSX b/imdi/Makefile.OSX new file mode 100644 index 0000000..1e03a43 --- /dev/null +++ b/imdi/Makefile.OSX @@ -0,0 +1,42 @@ +# MAC OSX, derived from UNIX setup + +# Copyright 2000 - 2007 Graeme W. Gill +# This material is licenced under the GNU AFFERO GENERAL PUBLIC LICENSE Version 3 :- +# see the License.txt file for licencing details. + +SLASH = / +SUFLIB = .a +SUFOBJ = .o +SUFEXE = +CMDSEP = ; + +INCFLAG = -I +DEFFLAG = -D +UNDEFFLAG = -U +CCOPTFLAG = -O +CCDEBUGFLAG = -g +CCPROFFLAG = +LINKDEBUGFLAG = +LINKPROFFLAG = + +STDHDRSDEF = /usr/include + +MAKEU = make +LIBU = ar -r +LIBOF = +RANLIB = ranlib +AS = as +CCFLAGSDEF = -DUNIX -c +CC = cc $(CCFLAGS) $(STDHDRS) +CCOF = -o +LINKFLAGSDEF = -lm +LINKLIBS = +LINK = cc $(LINKFLAGS) $(LINKLIBS) +LINKOF = -o + +.SUFFIXES: +.SUFFIXES: .c $(SUFLIB) $(SUFOBJ) $(SUFEXE) + +.c$(SUFOBJ): + $(CC) $(CCOF)$*$(SUFOBJ) $< + -- cgit v1.2.3