

OBJS =  \
 ltx2hyp1.o \
 language.o \
 ucscu.o \
 rlib.o

SRCS =  \
 ltx2hyp1.c \
 rlib/language.c \
 rlib/ucscu.c \
 rlib/rlib.c
 

# CFLAGS you may like to add:
# -O      is for compiler optimization.
# -DUNIX  for UNIX.
# -Damiga for amiga (may already be defined by compiler).
# -I.     is so the compiler can find the rlib directory.
# -Hpcc   For AIX  Relaxes strict ANSI-C complience
#            something similar may need to be defined on other compilers
# -w      FOR AIX  relaxes warning messages

CFLAGS = -DUNIX -DHARDCODE_PHRASES -I. -w -Hpcc

latex2hyp: $(OBJS)
	cc $(CFLAGS) -o latex2hyp $(OBJS)




