JMKMF(1) General Commands Manual JMKMF(1)NAME
jmkmf - runs jmake with the correct options
SYNOPSIS
jmkmf [ top-level dir [ current dir ] ]
DESCRIPTION
Jmkmf is a wrapper which calls jmake with the correct options, defining the symbols TOPDIR (location of the top-level directory) and CURDIR
(current directory). The generated Makefile.SH is then ran through /bin/sh to produce a Makefile.
Jmkmf is useful when you generate a makefile for the first time.
When ran without arguments, jmkmf will scan the directories upwards, looking for a .package file marking the top of your sources. It will
then derive the top-level directory and the name of the current directory by itself.
Once you have a Makefile.SH generated by jmake, and have run Configure already, you can use make Makefile.SH to build the Makefile.SH again
and make Makefile to run the Makefile.SH through /bin/sh. To use the recursive commands, you have to append an 's' at the end of the name
as in make Makefiles.SH and make Makefiles.
AUTHOR
Raphael Manfredi <ram@hptnos02.grenoble.hp.com>
FILES
Jmakefile High level description of makefile
The file marking the top of your package tree
SEE ALSO jmake(1), packinit(1).
ram JMKMF(1)
Check Out this Related Man Page
xmkmf(1X)xmkmf(1X)NAME
xmkmf - create a Makefile from an Imakefile
SYNOPSIS
xmkmf [-a] [topdir[curdir]]
DESCRIPTION
The xmkmf command is the normal way to create a Makefile from an Imakefile shipped with third-party software.
When invoked with no arguments in a directory containing an Imakefile, the imake program is run with arguments appropriate for your system
(configured into xmkmf when X was built) and generates a Makefile.
When invoked with the -a option, xmkmf builds the Makefile in the current directory, and then automatically executes "make Makefiles" (in
case there are subdirectories), "make includes", and "make depend" for you. This is the normal way to configure software that is outside
the X Consortium build tree.
If working inside the X Consortium build tree (unlikely unless you are an X developer, and even then this option is never really used), the
topdir argument should be specified as the relative pathname from the current directory to the top of the build tree. Optionally, curdir
may be specified as a relative pathname from the top of the build tree to the current directory. It is necessary to supply curdir if the
current directory has subdirectories, or the Makefile will not be able to build the subdirectories. If a topdir is given, xmkmf assumes
nothing is installed on your system and looks for files in the build tree instead of using the installed versions.
SEE ALSO imake(1X)xmkmf(1X)
Hi guys, I'm a firsttime poster. My makefile is relinking everytime, even if nothing changes. Is there anyway to have it stop doing this?
Here the makefile:
F77C = /usr/bin/f77 -O
VERSION =9.4
VPATH = ../poten
# executables that can be built from this makefile
OH3S =... (10 Replies)
I m using SUN Studiuo11 compiler.There is problem while building Makefile.
I got error as dmake:fetal error command failed for target
plz help me. (7 Replies)
hello, we have a aix 5.2 server with 8GB of ram. is it possible, without actually removing the hardware, to have the O/S think it has only 4GB of ram? We would like to see how the handles and responds if it only had 4Gb instead of the 8GB. Any ideas or suggestions? Thanks
Looks like i found... (6 Replies)
Hi ,
While trying to compile a PRO*C code on unix using makefile i get the following errors. i am now working on a 10g migration (from 8i) ...
these makefile perfectly work in previous version.
ld: fatal: file... (7 Replies)
I have a simple makefile which I use to sync libraries files from /source/sybase directory on the source machine where the Makefile resides to /destination/folder on the various destination machines like machine1, machine2, machine3 using solaris utility 'rsync'. So when I run "make -f makefilename... (7 Replies)
Hi All,
I have created a common makefile that compiles both pc and c files.
i have created the dependency between the files as
.pc.o:
-----------
.c.o:
-----------
I will be deleting the .c files created from the .pc files, once the object file is created. ( better storage... (7 Replies)
Hi, I am very new with makefile topics , maybe this is a very symple question...
I have this code wich compile very good ( I get it from the net), I will call it code A.
I have to add it with a program that is all ready in use, (code B) that also compile good. When I put together it doesnt... (7 Replies)
I have the make:11: *** No seperator issue with my make file.
So I needed to tab all the commands and I needed a proper editor such as RHIDE, after I downlaoded it, its make file was also corrupted and broken.
Out of options, I come to forums for assistance.
Would anyone please fix it for... (7 Replies)
Hello,
I am having problem with debugging my code. I am writing a C code and then I compile it with the Makefile. I make a target file and then copy it in my Robot(Khepera III) and then run the program over there.
I compile it ofcorse on my machine and then copy the compiled file in the... (10 Replies)
Hello,
In my make file (make 3.81), I use a combination of shell commands to automatically create the name of my build directory.
OS := $(shell uname -s)
ARCH := $(shell uname -m)
KERN := $(shell uname -r | cut -d. -f 1,2)
BDIR := $(OS)_$(KERN).$(ARCH)When I boot into different OSs, I... (7 Replies)
I am writing a Makefile for Cobol on Linux.My sample Makefile looks like below.
I do not want to Hardcode Program names in Makefile.Is there any way we can mention directories in Target and Prerequisites instead of File names sothat Makefile Pickup all the files in mentioned path as below.... (8 Replies)
Hi We have a redhat 4 with 8GB ram in it
but free -m only recognises 3 GB of total ram
please could some one help me why this happens
HP syetems insight manager showing 4* 2 GB RAMS
# free -m
total used free shared buffers cached
Mem: 3290... (6 Replies)
I have the following part of a makefile and want to simplify it
using rules rather than having to code the same two blocks
when I need ti build another program.
An having difficulty doing it
all: 1dvel2 1dvel 2dvel
... (8 Replies)
I am trying to practice to create Makefiles. The goal is to create a makefile such that if a change is made to any of the source code files, the project can be rebuilt by typing make at the command line.
I have the following files:
ac.cc: has include ac.h and pg.h
fr.cc: has main... (8 Replies)
Hi there! I am a undergraduate student and recently submitted an assignment for my coursework - however there was one function I could not get to work properly before the due date. Although I don't need to complete this work anymore I would still like to in order to know what was going wrong. If... (11 Replies)