MakeFile


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers MakeFile
# 8  
Old 11-05-2013
The only lines which actually do anything are

Code:
FLAGS=-O2 -Wall
FILES=primjer1.c primjer2.c primjer3.c
all:primjer1.c primjer1.c primjer3.c
        gcc $(FLAGS) $(FILES) -o program

 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Programming

Makefile for g++

Hi All, We have moved our OS from Sun Solaris to Linux and also some of the compilers. Our old makefile used to be as below: CC=cc FLAGS=-G -KPIC -DLG_SOLARIS_OS DEFINES=-DSunOS SYSLIBS=-lc .SUFFIXES : .c .c.o : ;$(CC) -c $(FLAGS) $(DEFINES) $*.c -o $*.o ... (3 Replies)
Discussion started by: shash
3 Replies

2. Shell Programming and Scripting

Makefile

Dear all, I have a quite simple question about how to manipulate "makefile.am". I intend to: 1. "CFLAGS" and "CXXFLAGS" have no value at all. I know that these values get "-g -O2" by default. On the other hand, when I try to set them as "CFLAGS = " in "makefile.am", I get warning messages... (4 Replies)
Discussion started by: Dandan
4 Replies

3. UNIX for Dummies Questions & Answers

Help with MakeFile

I'm really confused how to use a makefile. Are you supposed to be make a file from emacs called MakeFile and put code in there to compile? I am trying to create a makefile to compile two .cpp files in my current directory to produce two .o files and then link them... What I did was make a... (1 Reply)
Discussion started by: jzhang172
1 Replies

4. Homework & Coursework Questions

Makefile Help

Use and complete the template provided. The entire template must be completed. If you don't, your post may be deleted! 1. The problem statement, all variables and given/known data: I have been trying to make the program swap but i have been getting errors with the makefile such as driver.o:... (1 Reply)
Discussion started by: mgyeah
1 Replies

5. Homework & Coursework Questions

Help with Simple Multi-Level Makefile (Extremely New at Makefile)

Use and complete the template provided. The entire template must be completed. If you don't, your post may be deleted! 1. The problem statement, all variables and given/known data: Basically, the prompt is make a makefile with various sub makefiles in their respective subdirectories. All code... (1 Reply)
Discussion started by: Tatl
1 Replies

6. UNIX for Advanced & Expert Users

Makefile executing another Makefile first?

I have 2 libraries in 2 different directories that I build with Makefiles. library B depends on library A. If I modify a .cpp file in library A and run lib B's Makefile can I have B's makefile to automatically rebuild library A? I am now rebuilding A, followed by B... but I'd like B to... (0 Replies)
Discussion started by: wwuster
0 Replies

7. UNIX for Advanced & Expert Users

Makefile problem - How to run module load in a Makefile

Hi, I'm trying to run the module load command in a Makefile and i'm getting the following error: make: module: command not found Why is this? Is there any way to run this command in a Makefile? NOTE: command - module load msjava/sunjdk/1.5.0 works fine outside of the Makefile (2 Replies)
Discussion started by: hernandinho
2 Replies

8. High Performance Computing

help with makefile

I am new to creating makefiles. I have several fortran programs in a folder called as "test" and also have several subroutines in another folder (which is inside this test folder) called as libry My makefile is in the folder "test" I want to create a makefile which can access the files in... (2 Replies)
Discussion started by: explorer
2 Replies

9. Programming

Makefile help

Hi, What I want to do is for make to reconstruct the target even if its dependencies have not changed. So, even if if the dependent files do not have a more recent timestamp, the commands are executed. The reason I want to do this.. 1)someone executes make on solaris. We have a solaris... (4 Replies)
Discussion started by: tantric
4 Replies

10. Programming

about the makefile

can anyone well explain how to create a makefile? especially those commands in the makefile? BTW, what is CFLAG? (2 Replies)
Discussion started by: ligerdave
2 Replies
Login or Register to Ask a Question
pud-faq(7)							  MISCELLANEOUS 							pud-faq(7)

  NAME
	  pud-faq - faqs and facts about the Portable Unix Documentation FAQ authoring language.

	  This	document  describes  the Portable Unix Documentation (PUD) faq mini-language in the style of a FAQ. PUD-faq is built on top of the
	  macro interpreter zoem. A PUD document is generally well-structured, relatively free of formatting statements, compact to write and eas-
	  ily  extendable.  It	can  be converted to both troff and html, for viewing in terminals and browsers. High quality Postscript and plain
	  text formats can be derived from the troff output. Refer to pud-man for examples.

  DESCRIPTION
	  The PUD faq macros extend the PUD manual macros; a PUD faq document must import both man.zmm and faq.zmm. There are  only  a	few  addi-
	  tional faq macros in faq.zmm. The overall layout of a faq document is as follows:

	  import{man.zmm}
	  import{faq.zmm}

	  egin{pud::man}{
	     {name}{pud-faq}
	     {html_title}{The PUD faq mini-language FAQ}
	     {author}{Stijn van Dongen}
	     {section}{7}
	  }

	  "faq::preamble"

	  ${html}{"man::maketoc"}

	  sec{toc}{TOC}
	  "faq::maketoc"

	  egin{faqsec}{{ref}{Labelx}{cap}{Captionx}}
	     content
	  end{faqsec}

	  egin{faqsec}{{ref}{Labely}{cap}{Captiony}}
	     content
	  end{faqsec}

	  end{pud::man}

	  The PUD manual macros are documented in the pud-man manual page.

	  Create your FAQ according to the lay-out above and as described further below. Refer to Question 2.3 for full-size examples.

	  Once you have written your FAQ, process it as follows.

	     zoem -i your-faq.azm -d html
	     zoem -i your-faq.azm -d html
	     zoem -i your-faq.azm -d roff -o your-faq.7
	     zoem -i your-faq.azm -d roff -o your-faq.7

	  This generates files your-faq.html and your-faq.7.  Each device is run twice to be certain that references are found and linked.

  RESOURCES
	  o The Zoem User Manual.
	  o The pud-man manual page.

  TOC
  1...... How do I create and link to questions and sections?
   1.1... How do I start a section?
   1.2... How do I make a faq entry?
   1.3... How do I link to a question?
   1.4... How do I link to a section?
   1.5... Is that not a whole lot of typing just for linking?

  2...... Miscellaneous
   2.1... Is it really possible to have more than one section?
   2.2... Is there an easy way to get back to the TOC?
   2.3... Show me a real FAQ, not this nonsense.
   2.4... I want to change the appearance of my FAQ.
   2.5... Show me the source to this FAQ.

  FAQ
						    How do I create and link to questions and sections?

   1.1	  How do I start a section?

	  You would for example type

	  egin{faqsec}{
	     {ref}{kind}
	     {cap}{How do I link to questions and sections?}
	  }

   1.2	  How do I make a faq entry?

	  You create an entry as follows:

	  faq{q_question}{How do I make a faq entry?}
	     You create an entry as follows:
	     ...

   1.3	  How do I link to a question?

	  car{Like this: linking to
	  iref{q_qlink}{Question~
efnumber{q_qlink}},
	  or a silly link to the iref{q_qlink}{current question}.
	  Linking to iref{s_basics}{Question~
efnumber{q_slink}},
	  or a link to the iref{q_slink}{next question}.}

	  par{
	  Of course, you have to use wordings such that the
	  text still makes sense in the absence of links
	  (assuming you are intested in the troff version of
	  the FAQ you are writing), so normally you just refer to
	  iref{q_slink}{Question~
efnumber{q_slink}} and be done
	  with it.}

	  Like this: linking to Question 1.3, or a silly link to the current question.	Linking to Question 1.4, or a link to the next question.

	  Of course, you have to use wordings such that the text still makes sense in the absence of links (assuming you are intested in the troff
	  version of the FAQ you are writing), so normally you just refer to Question 1.4 and be done with it.

   1.4	  How do I link to a section?

	  car{Like this: linking to
	  iref{q_qlink}{Section~
efnumber{s_basics}} and
	  linking to iref{q_stupid}{Section~
efnumber{s_stupid}}.}

	  Like this: linking to Section 1 and linking to Section 2.

   1.5	  Is that not a whole lot of typing just for linking?

	  It sure is. Note the repeating elements though. Feel free to create your own shortcuts by using Zoem's macro facilities.

								       Miscellaneous

   2.1	  Is it really possible to have more than one section?

	  QED

   2.2	  Is there an easy way to get back to the TOC?

	  In the HTML version of the faq, one can click on the number to the left of the question; this will take you to the top of the  TOC  part
	  pertaining to the section that question belongs to.

   2.3	  Show me a real FAQ, not this nonsense.

	  The  reason I began writing zoem and PUD was that I wanted decent (both HTML and troff) and easy to write documentation for my implemen-
	  tation of the MCL cluster algorithm.

	  o http://micans.org/mcl/src/mcl-latest/doc/mclfaq.azm
	  o http://micans.org/mcl/src/mcl-latest/doc/mclfaq.html
	  o http://micans.org/mcl/src/mcl-latest/doc/mclfaq.ps

   2.4	  I want to change the appearance of my FAQ.

	  Well, you need to make a copy of the faq macros and possibly the man macros, and hack those changes in.  Zoem itself is  very  flexible,
	  but  the  PUD faq macros are not, in this respect. They can be made so, if you wish.	If you just want to change or add some style sheet
	  rules for the HTML version, it will be quite easy.  The same holds for changing font styles and possibly even spacing rules.

   2.5	  Show me the source to this FAQ.

	  Search for pud-faq.azm in your install of zoem.  Take note though that I played a few silly tricks in this FAQ, so the source looks more
	  unreadable than your average FAQ.  The FAQ pointed to in Answer 2.3 gives a more realistic impression.

  AUTHOR
	  Stijn van Dongen.

  SEE ALSO
	  The pud-man manual page, documenting the PUD manual language. The FAQ language imports the manual definitions and you use these e.g. for
	  sectioning commands as described above.

	  The pud manual page gives an overview of PUD.

  pud-faq 1.002, 10-008 					      8 Jan 2010							  pud-faq(7)