# makefile CC = g++ PROGRAM = tex2rtf OBJECTS = tex2rtf.o tex2any.o texutils.o rtfutils.o xlputils.o htmlutil.o readshg.o table.o # implementation .SUFFIXES: .o .cpp .cpp.o : $(CC) -c `wx-config --cflags` -o $@ $< all: $(PROGRAM) $(PROGRAM): $(OBJECTS) $(CC) -o $(PROGRAM) $(OBJECTS) `wx-config --libs` clean: rm -f *.o $(PROGRAM)