## M E D I C A L  L A N G U A G E  P R O C E S S I N G, LLC
## (c) 2005 All rights reserved.
## Read Terms of Use at http://mlp-xml.sourceforge.net.
## Contact medical_language_processing@gmail.com
##
## g++ 3.3.2
## Compiling mkoneline and transsrc for use in MLP
## dictionary function dictgen.  They are part of a
## sorting scheme with collaction locale C in dictgen.
## mkoneline turns an MLP dictionary record into one
## line and transsrc reverses the process.
##
CC = /usr/bin/g++
CFLAGS = -ansi -Wno-deprecated -g -c -o

OBJS  = \
mkoneline.o 

OBJ2  = \
transsrc.o 

# all:
# mkoneline: $(OBJS)
# 	$(CC) $(OBJS) -o mkoneline 

transsrc: $(OBJ2)
	$(CC) $(OBJ2) -o transsrc 

# mkoneline.o: $(OBJS)
# 	$(CC) $(CFLAGS) mkoneline.o mkoneline.C

transsrc.o:
	$(CC) $(CFLAGS) transsrc.o transsrc.C

