From aeb9247272c2772c491df8f682aebf0097c98519 Mon Sep 17 00:00:00 2001 From: Thomas Grill Date: Wed, 5 Jan 2005 05:07:12 +0000 Subject: updated make system updated for OSX updated build system svn path=/trunk/; revision=2466 --- externals/grill/py/build/gnumake-lnx-gcc.inc | 2 ++ externals/grill/py/build/gnumake-mac-gcc.inc | 4 ++++ externals/grill/py/build/makefile-lnx-gcc.inc | 2 -- externals/grill/py/build/makefile-mac-gcc.inc | 4 ---- externals/grill/py/build/makefile-win-msvc.inc | 2 -- externals/grill/py/build/nmake-win-msvc.inc | 2 ++ 6 files changed, 8 insertions(+), 8 deletions(-) create mode 100644 externals/grill/py/build/gnumake-lnx-gcc.inc create mode 100644 externals/grill/py/build/gnumake-mac-gcc.inc delete mode 100644 externals/grill/py/build/makefile-lnx-gcc.inc delete mode 100644 externals/grill/py/build/makefile-mac-gcc.inc delete mode 100644 externals/grill/py/build/makefile-win-msvc.inc create mode 100644 externals/grill/py/build/nmake-win-msvc.inc (limited to 'externals/grill') diff --git a/externals/grill/py/build/gnumake-lnx-gcc.inc b/externals/grill/py/build/gnumake-lnx-gcc.inc new file mode 100644 index 00000000..f12ec62e --- /dev/null +++ b/externals/grill/py/build/gnumake-lnx-gcc.inc @@ -0,0 +1,2 @@ +INCPATH += -I$(PYTHONPREFIX)/include/python$(PYTHONVERSION) +LIBS += -lpython$(PYTHONVERSION) diff --git a/externals/grill/py/build/gnumake-mac-gcc.inc b/externals/grill/py/build/gnumake-mac-gcc.inc new file mode 100644 index 00000000..0e510dec --- /dev/null +++ b/externals/grill/py/build/gnumake-mac-gcc.inc @@ -0,0 +1,4 @@ +# + +LIBS += -framework Python + diff --git a/externals/grill/py/build/makefile-lnx-gcc.inc b/externals/grill/py/build/makefile-lnx-gcc.inc deleted file mode 100644 index f12ec62e..00000000 --- a/externals/grill/py/build/makefile-lnx-gcc.inc +++ /dev/null @@ -1,2 +0,0 @@ -INCPATH += -I$(PYTHONPREFIX)/include/python$(PYTHONVERSION) -LIBS += -lpython$(PYTHONVERSION) diff --git a/externals/grill/py/build/makefile-mac-gcc.inc b/externals/grill/py/build/makefile-mac-gcc.inc deleted file mode 100644 index 0e510dec..00000000 --- a/externals/grill/py/build/makefile-mac-gcc.inc +++ /dev/null @@ -1,4 +0,0 @@ -# - -LIBS += -framework Python - diff --git a/externals/grill/py/build/makefile-win-msvc.inc b/externals/grill/py/build/makefile-win-msvc.inc deleted file mode 100644 index 8748d223..00000000 --- a/externals/grill/py/build/makefile-win-msvc.inc +++ /dev/null @@ -1,2 +0,0 @@ -INCPATH=/I$(PYTHONPATH)\include -LIBPATH=/LIBPATH:$(PYTHONPATH)\libs diff --git a/externals/grill/py/build/nmake-win-msvc.inc b/externals/grill/py/build/nmake-win-msvc.inc new file mode 100644 index 00000000..8748d223 --- /dev/null +++ b/externals/grill/py/build/nmake-win-msvc.inc @@ -0,0 +1,2 @@ +INCPATH=/I$(PYTHONPATH)\include +LIBPATH=/LIBPATH:$(PYTHONPATH)\libs -- cgit v1.2.1