home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / wxos2233.zip / wxOS2-2_3_3.zip / wxWindows-2.3.3 / utils / tex2rtf / src / makefile.unx < prev    next >
Makefile  |  2002-08-09  |  412b  |  25 lines

  1. # makefile
  2.  
  3. CXXFLAGS = `wx-config --cxxflags`
  4. LDFLAGS = `wx-config --libs`
  5.  
  6. PROGRAM = tex2rtf
  7.  
  8. OBJECTS = tex2rtf.o tex2any.o texutils.o rtfutils.o xlputils.o htmlutil.o readshg.o table.o
  9.  
  10. # implementation
  11.  
  12. .SUFFIXES:    .o .cpp
  13.  
  14. .cpp.o :
  15.     $(CXX) -c $(CXXFLAGS)  -o $@ $<
  16.  
  17. all:    $(PROGRAM)
  18.  
  19. $(PROGRAM):    $(OBJECTS)
  20.     $(CXX) -o $(PROGRAM) $(OBJECTS) $(LDFLAGS) 
  21.  
  22. clean:
  23.     rm -f *.o $(PROGRAM)
  24.  
  25.