Is there any way to set env variable in top level Makefile and unset when done


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Is there any way to set env variable in top level Makefile and unset when done
# 1  
Old 10-23-2005
Is there any way to set env variable in top level Makefile and unset when done

Hello
I have compilation directory structure the top level Makefile is the one that contains all the sub directories
I want to set in this Makefile env variable say : setenv OPTIMIZATION_LEVEL "1"
and when all the sub directories done compiling it will set this variable to different lavel say : setenv OPTIMIZATION_LEVEL "2"
but only when all the sub directories done
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Unset environement variable

Hi, I have the following line in the script unset _SET_ENV_AA unset _SETENV but where I can check the value for this environement variable (2 Replies)
Discussion started by: stew
2 Replies

2. Red Hat

PROC_MEM_RES how to set/unset/change

Hi all, Does anyone know how to change PROC_MEM_RES? We have a DB server with quite a few oracle instances (RAC) and we are getting critical alerts for PROC_MEM_RES. Anyone know how to increase the current setting or what we should do about it? Thanks in advance. john (2 Replies)
Discussion started by: jonnyd
2 Replies

3. Shell Programming and Scripting

Unset variable with characters in value

I have a script with a $PASSWORD variable. I unset it right after using it, just to minimize the chance it could be left around for a snooper. That worked just fine... until I used a password with a value of "P@ssw0rd" Now, unset (even with -f, even with the variable enquoted) tells me: unset:... (1 Reply)
Discussion started by: jnojr
1 Replies

4. Web Development

Deny from env=env-variable Does not work

(Above from Apache docs). On my system, using: SetEnvIf User-Agent Mozilla IsBad=1 Order allow,deny Allow from all Deny from env=IsBad ...I see that environment variable is set (using phpinfo()) but the page is still served. No errors in the Apache logs. (1 Reply)
Discussion started by: gnurob
1 Replies

5. Shell Programming and Scripting

how to set/get shell env variable in python script

greetings, i have a sh script that calls a python script. the sh script sets an env variable BIN: export BIN=bin64i need to get that BIN variable's value and use it within this python script. anyone know how to do this? thanx in advance. (5 Replies)
Discussion started by: crimso
5 Replies

6. Homework & Coursework Questions

Help with Simple Multi-Level Makefile (Extremely New at Makefile)

Use and complete the template provided. The entire template must be completed. If you don't, your post may be deleted! 1. The problem statement, all variables and given/known data: Basically, the prompt is make a makefile with various sub makefiles in their respective subdirectories. All code... (1 Reply)
Discussion started by: Tatl
1 Replies

7. Shell Programming and Scripting

Set/Export Env Vars from with Shell Script With Input Variable

I have a shell script I want to run that will set environment variables based on the value of an input variable submitted when the shell script is called. For example: $ mgenv.sh prod This would set environment variables for prod $ mgenv.sh test This would set environment variables... (1 Reply)
Discussion started by: brtaylor73
1 Replies

8. UNIX for Advanced & Expert Users

how to unset the readonly variable

Hi All, May be this is a very simple question... $ b=8 $ readonly b $ echo $b 8 $ b=90 -bash: b: readonly variable $ unset b -bash: unset: b: cannot unset: readonly variable I m not able to change the readonly mode of variable b Please help me out.. Thanks Nidhi (2 Replies)
Discussion started by: Nidhi2177
2 Replies

9. AIX

Do I need to remote after installation of s/w and set the env variable

Hi, I have installed ODWEK software on AIX box and set the environment variables like: PATH,LIBPATH,LD_LIBRARY_PATH,CLASSPATH. My question here is do I need to reboot the system to take these changes or is there anyother workaround. I heard that there is 'export'. But I don't know how far it... (1 Reply)
Discussion started by: srangu
1 Replies

10. AIX

Do I need to reboot after installation of s/w and set the env variable

Hi, I have installed ODWEK software on AIX box and set the environment variables like: PATH,LIBPATH,LD_LIBRARY_PATH,CLASSPATH. My question here is do I need to reboot the system to take these changes or is there anyother workaround. I heard that there is 'export'. But I don't know how far it... (1 Reply)
Discussion started by: srangu
1 Replies
Login or Register to Ask a Question
MMAKE(1)							   User Commands							  MMAKE(1)

NAME
mmake - generate a Java Makefile SYNOPSIS
mmake [ -d | -v ] DESCRIPTION
This program will generate a Makefile for Java source files. Use the -d option to accept all defaults. After running mmake, you will obtain a Makefile in the directory from where you started the program. The Makefile will handle java files in the current directory and in any sub-directories. Use the generated Makefile with mmake as follows: To compile Java files just type make. It's also possible to run make with one of the following targets: doc, clean, help, jar, srcjar, bun- dle, install, uninstall, tags and depend Where 'make doc' runs javadoc on the source files, it will only work for files in a package. The command 'make clean' removes class files and other temporary files. The command 'make jar' creates a jar file with all class files (and other files of your choice, see the JAR_OBJS variable in the Makefile). The command 'make srcjar' creates a jar file with all java files. The command 'make bundle' creates a Mac OS X Application Bundle with all the jar file. The command 'make install' will install a jar file, app bundle, class files and any shell wrappers you have made. (A shell script must have the extension .sh to be installed). Use 'make unin- stall' to remove installed files. The command 'make help', shows a help text with available targets. The command 'make tags' will generate a tag file for Emacs. And finally the command 'make depend' creates a dependency graph for the class files. (The dependency graph will be put in a file called makefile.dep, which is included in the Makefile) You don't have to run mmake each time you add a new java file to your project. You can add as many new java files as you like, the Makefile will find them. This is the case as long as you don't add a new package. In that case, you must either run mmake again or update the PACK- AGE variable in the Makefile. This is because the Makefile uses this variable to find directories with java files. The program mmake is able to create a dependency graph for your java files. To do this, it needs the jikes compiler from IBM. Get jikes from http://www.ibm.com/developerworks/oss/jikes/.You would probably be more content with jikes anyhow, since it is much faster than javac. To create a dependencies graph, do a make clean before running make depend. A NOTE ON INSTALLATION
The Makefile created with mmake will do a fair job installing the different files that makes up your system. It uses the following Makefile variables when it conducts the install routine: o PREFIX o CLASS_DIR o JAR_DIR o BUNDLE_DIR o DOC_DIR o SCRIPT_DIR PREFIX This variable will be prepended to all other directory variables above. It is used for grouping the other directories into one root direc- tory. If you don't want that, you may simply set the variable to an empty string in the Makefile. If the variable is empty you could still use it on the command line when you run make, for instance for a one-shoot installation like: make PREFIX=/local/myproject/ install CLASS_DIR This variable denotes the top directory from where all class files will be installed. Its default value is classes, which I believe is a good value. Note: If you don't want to install any class files (because you are, for example, only going to use a jar file), set this vari- able to an empty string and no class files will be installed. Resource files will also be installed below this directory if such files are present in a package structure. This is useful if you are using e.g. ResourceBundles to Localize your application and have your property files in it's own directory in the package structure. JAR_DIR This variable tells the Makefile where to install the jar file. The default value is lib, which is also a good default value. BUNDLE_DIR This variable tells the Makefile where to install the app bundle. The default value is lib, which is also a good default value. DOC_DIR When you run javadoc, all the html files will be put into this directory. Its default value is doc/api-docs. You should probably keep that name, but then again, you may change it as you like. SCRIPT_DIR The Makefile uses this variable to install any shell wrapper-scripts that you have created. If you write an application, it is always nice for the user that you provide a wrapper script to start the application. Its default value is bin. (The Makefile will only install shell- scripts that has the extension .sh. The mmake script will tell the Makefile where to look for shell-scripts) INSTALLATION SUMMARY If you keep the default values you will get an installation tree that looks like this: `-- PREFIX |-- bin |-- classes | `-- package <--- Example of a sub-directory | |-- sub-package1 | |-- sub-package2 | `-- sub-package3 |-- doc | `-- api-docs `-- lib USING THE C-PREPROCESSOR This is a excellent tool for managing projects with several different versions. The idea behind using the C preprocessor with Java is to better manage different versions more easily. This is done by using CPP conditional statements in the source files. I would strongly advise you not to use CPP to redefine the Java language itself. To use the C preprocessor together with Java, you can change the name of the source files that you want to preprocess -- from <file- name>.java to <filename>.xjava. The Makefile has a rule to build .class files from .xjava files. It is not necesarry to change every file from .java to .xjava. The Makefile will work well and consistently in an environment of both .java and .xjava files. (E.g. 'make clean' will only remove .java files that were created from a .xjava file. Other java files will, of course, not be removed.) You can now use cpp Conditionals in Your Java-code, for example, as follows: #ifdef JAVA1_1 [code1] #else [code2] #endif The JAVA1_1 label in the above example is tested against the VERSION variable in the Makefile. That is, if the VERSION variable is JAVA1_1, then [code1] would be compiled and [code2] left out. Likewise, if VERSION is something else than JAVA1_1, then [code2] would be compiled and [code1] left out of the resulting .class file. NOTES
mmake will give you one Makefile for managing your Java files. Although it's easy to setup and use mmake in a recursive makefile context, you don't want to do that. To see why, read the excellent article: Recursive Make Considered Harmful at http://www.canb.auug.org.au/~millerp/rmch/recu-make-cons-harm.html DEPENDENCIES
mmake will need the following: o Perl 5.x o Gnu make o Gnu xargs (recommended) AUTHOR
Jan-Henrik Haukeland <hauk@tildeslash.com> April 2. 2004 www.tildeslash.com MMAKE(1)