# makefile for fconvert-- a file to file translator
#

# CC=gcc2.3.3 
CC=gcc

#
#  Edit the config.h file for all the configuration things.. 
#

EXTRA_INCLUDES = -Iregex/
EXTRA_LIBRARIES = regex/regerror.o regex/regexp.o regex/regsub.o

SRCS = main.c type.c utils.c get_convert.c figure_convert.c convert.c 

OBJS = main.o type.o utils.o get_convert.o figure_convert.o convert.o 

ComplexProgramTarget(fconvert)

