Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-10-2005 12:49 PM
09-10-2005 12:49 PM
I am trying to understand how to build a Module developed using DEC C, C++, and VAX MACRO 32 (ported to Alpha) (three source languages). Here I have attached my existing makefile.vms code, which is used to build. But I don't understand what utility has been used to write this makefile.vms program, is it MMS, or any third party tools?
Could you please give me some idea where can I find the document to understand this "makefile.vms" code
Thanks in advance.
Archunan
Archie
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-10-2005 09:06 PM
09-10-2005 09:06 PM
SolutionYour posting omitted many details (type of system, version, etc.).
From the name ("makefile"), I suspect that you are dealing with some version of the "make" utility. From context, I would guess that the system is an Alpha, and it is running 7.3-2 or later. I would further guess that the GNV tools are installed on the system (these are downloadable from the HP OpenVMS www site at http://h71000.www7.hp.com/opensource/opensource.html#gnv).
My recollection is that there is a copy of the make utility in that kit. In that case, you want to check the traditional sources of information about the UNIX/Linux utilities.
I hope that the above is helpful.
- Bob Gezelter, http://www.rlgsc.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-11-2005 03:47 AM
09-11-2005 03:47 AM
Re: VMS build
what I can say is that it is definitely not MMS !
So I think it's superfluous to describe how to determine if MMS is installed and usable on your system.
Cheers,
EW
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-12-2005 05:48 AM
09-12-2005 05:48 AM
Re: VMS build
Thanks for your response confirming the code is not MMS code and directing me towards GNV.
Bob, as per your suggestion I downloaded GNV readme PDF doc and gone thru that on the same day you asked. Also as per your direction, now I am studying about UX/Linux MAKE utility. I found little similar commands, but not all. Once I make sure GNV's make utility has been used on my build program, then I will download and install GNV.
But still I am confusing whether GNV's make utility has been used or not. your further assistance will be appreciated.
Thanks Archunan
Archie
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-12-2005 05:50 AM
09-12-2005 05:50 AM
Re: VMS build
MMK ALL
Since all is a target in your make file and is the typical target to build "all" of a utility.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-12-2005 06:26 AM
09-12-2005 06:26 AM
Re: VMS build
The appliation I am going to start build is very old, developed in 1990. This application was given out to third party company to do the maintenance support. Now our company revoked the contract. Now we have only source code without the hardware (VAX and Alpha), OS and documentation.
I tried MMK and MMS from the command prompt, it says unrecgnised cmd.. as I knew recently we purchased five Alpha DWPS 500Au series and one Alpha DS10 server with Ovms V7.3-2 and V8.2 along with C compiler. I did not install any of those MMS, or CMS as we don't purchase DECSet lic.
Let me try, MMK if it is freeware?. also I am trying to make sure GNV Make utlity has been used.
Rgds
Archunan
Thanks
Archie
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-12-2005 06:47 AM
09-12-2005 06:47 AM
Re: VMS build
http://www.madgoat.com/mmk.html
there are various makes available for VMS
http://vms.process.com/scripts/fileserv/fileserv_search.exe?package=make&description=&author=&system=Either&language=All&RD=&RM=&RY=
Purely Personal Opinion
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-12-2005 06:50 AM
09-12-2005 06:50 AM
Re: VMS build
http://h71000.www7.hp.com/freeware/freeware50/gmake/
Purely Personal Opinion
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-12-2005 07:20 AM
09-12-2005 07:20 AM
Re: VMS build
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-14-2005 02:24 AM
09-14-2005 02:24 AM
Re: VMS build
the fact that the targets are directly followed by a ':' makes me think this can't be a MMS/MMK makefile (or "description file" in MMS speak).
But if mdm_cinc:make.vms doesn't have any bad surprises, you should be able to make it work with MMS/MMK by inserting a blank before (and after) the colon separating target and dependencies, and replacing %INCLUDE by .INCLUDE .
HTH,
Martin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-14-2005 02:54 AM
09-14-2005 02:54 AM
Re: VMS build
I have so many build procedures, I can go ahead and do little modification and build using MMS/MMK as you said. But the syntex looks similar to GNV code. As Mr.Bob and Joe suggested earlier, I downloaded GNV, and going to start build, If it doesn't work, I am going to re-write all my build procedures using our native MMS or DCL procedures
Thanks for all your suggestions
Archunan
Archie