]> git.saurik.com Git - wxWidgets.git/blobdiff - utils/tex2rtf/src/makefile.unx
Removed redundant file
[wxWidgets.git] / utils / tex2rtf / src / makefile.unx
index 082f482dfe0427f8ae61eb4355a1a834763e4013..a16e29eaa70975821953d2b49e8105f966438bb0 100644 (file)
@@ -1,17 +1,24 @@
-#
-# File:                makefile.unx
-# Author:      Julian Smart
-# Created:     1998
-# Updated:     
-# Copyright:   (c) 1998 Julian Smart
-#
-# "%W% %G%"
-#
-# Makefile for Tex2RTF (Unix)
-
-PROGRAM=tex2rtf
+# makefile
+
+CXXFLAGS = `wx-config --cxxflags`
+LDFLAGS = `wx-config --libs`
+
+PROGRAM = tex2rtf
 
 OBJECTS = tex2rtf.o tex2any.o texutils.o rtfutils.o xlputils.o htmlutil.o readshg.o table.o
 
-include ../../../src/makeprog.env
+# implementation
+
+.SUFFIXES:     .o .cpp
+
+.cpp.o :
+       $(CXX) -c $(CXXFLAGS)  -o $@ $<
+
+all:    $(PROGRAM)
+
+$(PROGRAM):    $(OBJECTS)
+       $(CXX) -o $(PROGRAM) $(OBJECTS) $(LDFLAGS) 
+
+clean:
+       rm -f *.o $(PROGRAM)