Skip to content
Snippets Groups Projects
Commit 8e94d8d7 authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

Forgot POSTBUILD; fix blackbox on cygwin

parent 4e3c6b78
No related branches found
No related tags found
No related merge requests found
# $Id: Makefile,v 1.254 2003-02-11 08:54:55 geuzaine Exp $ # $Id: Makefile,v 1.255 2003-02-11 09:18:48 geuzaine Exp $
include variables include variables
...@@ -22,6 +22,7 @@ compile: variables initialtag ...@@ -22,6 +22,7 @@ compile: variables initialtag
link: variables link: variables
${LINKER} -o bin/gmsh ${GMSH_LIBS} ${LINKER} -o bin/gmsh ${GMSH_LIBS}
${POSTBUILD}
install: variables install: variables
-mkdir -p ${bindir} -mkdir -p ${bindir}
......
// $Id: OpenFile.cpp,v 1.36 2003-01-25 22:33:38 geuzaine Exp $ // $Id: OpenFile.cpp,v 1.37 2003-02-11 09:18:48 geuzaine Exp $
// //
// Copyright (C) 1997 - 2003 C. Geuzaine, J.-F. Remacle // Copyright (C) 1997 - 2003 C. Geuzaine, J.-F. Remacle
// //
...@@ -209,7 +209,7 @@ void decygwin(char *in, char *out){ ...@@ -209,7 +209,7 @@ void decygwin(char *in, char *out){
} }
void SystemCall(char *command){ void SystemCall(char *command){
#if defined(WIN32) #if defined(WIN32) && !defined(_BLACKBOX)
STARTUPINFO suInfo; // Process startup information STARTUPINFO suInfo; // Process startup information
PROCESS_INFORMATION prInfo; // Process information PROCESS_INFORMATION prInfo; // Process information
......
...@@ -27,6 +27,9 @@ RANLIB=@RANLIB@ ...@@ -27,6 +27,9 @@ RANLIB=@RANLIB@
# The extension to use for executables... # The extension to use for executables...
EXEEXT=@EXEEXT@ EXEEXT=@EXEEXT@
# Any operation to perform on the executable after the link
POSTBUILD=@POSTBUILD@
# Installation directories # Installation directories
prefix=@prefix@ prefix=@prefix@
exec_prefix=@exec_prefix@ exec_prefix=@exec_prefix@
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment