Sponsored Content
Full Discussion: Error when using make file.
Operating Systems Linux Error when using make file. Post 302538581 by walidaydi on Wednesday 13th of July 2011 12:02:12 PM
Old 07-13-2011
thank you,

i change makefile and also i just keep #include <iostream> without "h":

CC= $(shell which ppc_4xx-g++)
CXXFLAGS=-c++ -Wall
LDFLAGS=
SOURCES=main.cpp hello.h
OBJECTS=$(SOURCES:.c++=.o)
EXECUTABLE=hello

all: $(SOURCES) $(EXECUTABLE)

$(EXECUTABLE): $(OBJECTS)
$(CC) $(LDFLAGS) $(OBJECTS) -o $@

.cpp.o:
$(CC) $(CXXFLAGS) $< -o $@

and i obtain this result :/opt/eldk_4.2/usr/bin/ppc_4xx-g++ main.cpp hello.h -o hello

i obtain two files: main.o and hello

is it ok?

because it's the first time that i use the make file.

why i didn't see hello world?

thanks an advance
 

10 More Discussions You Might Find Interesting

1. Programming

Error when running make

Hi , I get the following error when i run the make command. cc -Aa -DUNIX -osrcmpmn srcmpmn.c crt0: ERROR couldn't open /usr/lib/dld.sl errno:000000014 *** Error exit code 14 here the file is C program which has been modified. Please help. (1 Reply)
Discussion started by: shashidhara_01
1 Replies

2. Programming

Error while running C++ make file

The problem is that the original program was compiled using v5.0 MQ client but now we are using MQ client v5.3. Had modified the "make file" options as follows but still i could see the errors. #CLIENT_V5_LIBS = -limqb23ss -limqc23ss -lmqic -lmqmcs -lnsl -ldl CLIENT_V5.3_LIBS =... (1 Reply)
Discussion started by: hram
1 Replies

3. Linux

Error in issuing a make and make install

Hi, Recently I install a package and try to do a make and make install. However, in the make it gives me below error:- make:Nothing to be done for 'install-exec-am' make:Nothing to be done for 'install-data-am' Can anyone please explain to me what does this mean? I have been trying... (1 Reply)
Discussion started by: ahjiefreak
1 Replies

4. Solaris

Gani Network Driver Won't Install - make: Fatal error: Don't know how to make targ...

I attached a README file that I will refer to. I successfully completed everything in the README file until step 4. # pwd /gani/gani-2.4.4 # ls COPYING Makefile.macros gem.c Makefile Makefile.sparc_gcc gem.h Makefile.amd64_gcc ... (1 Reply)
Discussion started by: Bradj47
1 Replies

5. Programming

makeutility: how to get the make-file name inside of the make-file?

How I can get the current make-file name in a make-file So, if I run make with specified file:make -f target.mak is it possible to have the 'target' inside of the that 'target.mak' from the file name? (2 Replies)
Discussion started by: alex_5161
2 Replies

6. Programming

Make error

Hello, Is someone know why this generate an error : all: dt = $(shell date) echo "$(dt)" (5 Replies)
Discussion started by: X-Or
5 Replies

7. Programming

Error with Make File

Hi All, I am using GNU Make and i have a peculiar kind of error, i am not able to understand, Firstly have a look at the make file used by me CFLAGS=-c -Wall CC=gcc .PHONY:clean OBJ=./obj SRC=./src INC=./inc exec: $(OBJ)/*.o $(CC) $^ -o $@ %.o: $(SRC)/*.c $(CC) $(CFLAGS)... (1 Reply)
Discussion started by: niranjanvg
1 Replies

8. Shell Programming and Scripting

Make file error

I am new to using make command and I keep getting this error time and again please help me Make file is as follows #ARCH := $(shell uname)# # ifeq ($(ARCH), SunOS) DEFINES = -KPIC -DSVR4 -DSOLARIS -DSYSV -D__svr4 -D__svr4__\ -D_REENTRANT -DSOLARIS2_5 -D_SVID_GETTOD -DXP_UNIX -UDEBUG... (1 Reply)
Discussion started by: c.operatingsys
1 Replies

9. UNIX Desktop Questions & Answers

Gtkmm Make Then Error

I would like to install gtkmm-2.0.1 on solaris 10 platform. To install, I have a dependency libsigc++1.2 successfully install. I can type ./configure without any error. But when I typed make I got the following error. I am newbie who cannot understand the error. Have no idea how to solve... (0 Replies)
Discussion started by: nirin
0 Replies

10. Shell Programming and Scripting

error while executing make file

hi i am facing a strange error... whenever i try to execute make file it gives the following error bash-3.00$ make usa0300uz1128 sh: syntax error at line 1: `end of file' unexpected mksh: Fatal error: The command `if ; then echo "${COMMON}/src/rules/rules_11.2.0.3.2012Q3"; elif... (1 Reply)
Discussion started by: aishsimplesweet
1 Replies
lrelease(1)						      General Commands Manual						       lrelease(1)

NAME
lrelease - generate Qt message files from Qt Linguist translation files SYNOPSIS
lrelease [ options ] project-file lrelease [ options ] ts-files DESCRIPTION
This page documents the Qt Linguist Release tool for the Qt GUI toolkit. Lrelease reads a qmake/tmake project file (.pro file) and con- verts the translation files (.ts files) specified in it into Qt message files (.qm files) used by the application to translate. The .qm file format is a compact binary format that provides extremely fast lookups for translations and that is used by Qt. OPTIONS
-help Display the usage and exit. -verbose Explain what is being done. -version Display the version of lrelease and exit. USAGE
Here is an example .pro file that can be given to lrelease: HEADERS = funnydialog.h wackywidget.h SOURCES = funnydialog.cpp main.cpp wackywidget.cpp FORMS = fancybox.ui TRANSLATIONS = gnomovision_dk.ts gnomovision_fi.ts gnomovision_no.ts gnomovision_se.ts When running lrelease on this project file, the Qt message files gnomovision_dk.qm, gnomovision_fi.qm, gnomovision_no.qm and gnomovi- sion_se.qm will be generated from gnomovision_dk.ts, gnomovision_fi.ts, gnomovision_no.ts and gnomovision_se.ts, respectively. Lrelease can also be invoked with a list of .ts files to convert: lrelease gnomovision_*.ts SEE ALSO
lupdate(1) and http://doc.trolltech.com/i18n.html Trolltech AS 18 October 2001 lrelease(1)
All times are GMT -4. The time now is 06:32 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy