home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-385-Vol-1of3.iso / i / iritsm3s.zip / docs / makefile.unx < prev   
Makefile  |  1992-01-22  |  481b  |  30 lines

  1. #
  2. # Makefile for the IRIT solid modeler documentation (unix).
  3. #
  4.  
  5. include ../makeflag.unx
  6.  
  7. all:    irit.tex irit.doc irit.hlp
  8.  
  9. .c.o:
  10.     $(CC) $(CFLAGS) $(INCS) -c $<
  11.  
  12. HELP_OBJS = irithlp.o
  13.  
  14. irithlp: $(HELP_OBJS)
  15.     $(CC) $(CFLAGS) -o irithlp $(HELP_OBJS)
  16.  
  17.  
  18. install: irit.hlp
  19.     mv irit.hlp $(BIN_DIR)
  20.  
  21. irit.tex: irithlp irit.src
  22.     ./irithlp -l -o irit.tex irit.src
  23.  
  24. irit.hlp: irithlp irit.src
  25.     ./irithlp -h -o irit.hlp irit.src
  26.  
  27. irit.doc: irithlp irit.src
  28.     ./irithlp -t -o irit.doc irit.src
  29.  
  30.