GreenLake Administration
- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Compilation Using aCC
Operating System - HP-UX
1846552
Members
2844
Online
110256
Solutions
Forums
Categories
Company
Local Language
back
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Forums
Discussions
back
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
Blogs
Information
Community
Resources
Community Language
Language
Forums
Blogs
Go to solution
Topic Options
- 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
04-30-2001 07:53 AM
04-30-2001 07:53 AM
We have newly created an environment for aCC and are using nmake ,a compilation tool. When we are compiling the program through nmake it is giving a message
make: don't know how to make
Can you all suggest some points
Thanks
Prashun
make: don't know how to make
Can you all suggest some points
Thanks
Prashun
Solved! Go to Solution.
3 REPLIES 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-30-2001 07:59 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-30-2001 08:05 AM
04-30-2001 08:05 AM
Re: Compilation Using aCC
Hello
This is my makefile
include $(VROOT)/ancm/cilcpprules.mk
/* in HPUX10.20 C++ compiler, if a compiling processor is PA-RISC 2.0
we must use +DAportable to insure a compatibility, otherwise,
we can't run the binary on PA-RISC 1.1 like WS or other I series */
if "$(HPPA)" != "2.0"
CCFLAGS = -gdem -g
else
CCFLAGS += -D$(CUST)
end
COMMON_src=sched.C schedDBObj.C setConfigReqLite_v.C
.SOURCE.h : include $(ALLINCLS_NOACO)
.SOURCE.C : src
sched :: $(COMMON_SRC) ../lib/libipclink.a ../lib/libmsgifc.a $(ALLLIBS_NOACO)
This is my makefile
include $(VROOT)/ancm/cilcpprules.mk
/* in HPUX10.20 C++ compiler, if a compiling processor is PA-RISC 2.0
we must use +DAportable to insure a compatibility, otherwise,
we can't run the binary on PA-RISC 1.1 like WS or other I series */
if "$(HPPA)" != "2.0"
CCFLAGS = -gdem -g
else
CCFLAGS += -D$(CUST)
end
COMMON_src=sched.C schedDBObj.C setConfigReqLite_v.C
.SOURCE.h : include $(ALLINCLS_NOACO)
.SOURCE.C : src
sched :: $(COMMON_SRC) ../lib/libipclink.a ../lib/libmsgifc.a $(ALLLIBS_NOACO)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-30-2001 08:32 AM
04-30-2001 08:32 AM
Re: Compilation Using aCC
Okay, next step is to do a make -p and carefully examine all the suffix's and rules
to see if they are correct. If you have changed the makefile, make absolutely certain that the action lines beneath a target (possibly in your include file as well) always start with a single
e.g.
$(PROG) : $(OBJECTS) $(LIBES1)
$(CC) $(LDFLAGS) $(OBJECTS) -L$(LDIR) -o $(PROG)
strip $(PROG).
I seen one space in the action line kill an otherwise perfectly good make file.
Hope some of this helps...
to see if they are correct. If you have changed the makefile, make absolutely certain that the action lines beneath a target (possibly in your include file as well) always start with a single
e.g.
$(PROG) : $(OBJECTS) $(LIBES1)
I seen one space in the action line kill an otherwise perfectly good make file.
Hope some of this helps...
If it ain't broke, I can fix that.
The opinions expressed above are the personal opinions of the authors, not of Hewlett Packard Enterprise. By using this site, you accept the Terms of Use and Rules of Participation.
Company
Events and news
Customer resources
© Copyright 2026 Hewlett Packard Enterprise Development LP