Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Need help with makefile variables

Status
Not open for further replies.

fdf

MIS
Jul 30, 2003
38
US
I downloaded a public domain program, catdoc to Unix. The included Makefile.in is looking for a number of variable settings I'm unfamiliar with. I want to install executables into /usr2/bin. What should these be for SCO_SV 3.2v5.0.4?

srcdir = @srcdir@
top_srcdir = @top_srcdir@
VPATH = @srcdir@
prefix = @prefix@
exec_prefix = @exec_prefix@
installroot = @installroot@
bindir = @bindir@
libdir = @libdir@
mandir = @mandir@
INSTALL = @INSTALL@
WISH = @WISH@
CC = @CC@
build_targets = @buildtargets@
install_targets = @installtargets@
 
Don't have this package a ReadMe file ?
If GNU-like, try
Code:
 configure
to generate the Makefile suited for your environment.
Note: You must have a development environment.

Hope This Help
PH.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top