# # Copyright (c) 1994, 1995, 1996 Gunther Schadow. All rights reserved. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. TOPDIR := ../.. PROC = proc PROCFLAGS = code=ANSI_C dbms=v7 host=c lines=no sqlcheck=semantics\ USERID='schadow/hl7ora' ltype=none ireclen=132 oreclen=132 INCLUDE = -I. -I$(TOPDIR) -I$(TOPDIR)/hl7/include \ -I/users/uks/schadow/ORACLE/lib DEFINES = -Dextern='extern "C"' LDFLAGS = -L/users/uks/schadow/ORACLE/lib -L$(TOPDIR)/hl7/lib LOADLIBES = /users/uks/schadow/ORACLE/lib/osntab.o -lsql -lsqlnet -lora \ -lsqlnet -lpls -lnlsrtl -lcore -lnlsrtl -lcore -lcv6 -lcl \ -lhl7 -lg++ -lm PROGS = hl7update JUNK += $(PROGS) hl7update.cc *.log all: $(PROGS) include $(TOPDIR)/GNUmakefile.inc hl7update: hl7update.o .PRECIOUS: %.c %.cc %.c: %.pc $(PROC) $(PROCFLAGS) iname=$< oname=$@ %.cc: %.pcc $(PROC) $(PROCFLAGS) iname=$< oname=$@ ### Do not change this line, make depend uses it! ###