tinycobol/test.code/t26/Makefile

33 lines
638 B
Makefile

prefix=..
exec_prefix=../../compiler
g_includes=-I/usr/local/include
g_libraries=-L/usr/local/lib -L/usr/lib
CCX=gcc
#COB=${exec_prefix}/htcobol
COB=htcobol
ASM=as
INCLUDES=-I./ ${g_includes}
COPYBOOKS= -I../copybooks -I.
LIBS=${g_libraries} -L../../lib -lhtcobol -ldb -lpdcurses -lm
LDFLAGS=
#COBFLAGS=-P -g -D -t ${COPYBOOKS}
COBFLAGS=-P ${COPYBOOKS}
ASMFLAGS=-D
CCXFLAGS=-g ${INCLUDES}
SRCS = test26.cob
OBJS = $(SRCS:.cob=.o)
PROG = test26
#include ${prefix}/config/C.rules.in
include ${prefix}/config/COB.rules.in
#include ${prefix}/config/COB.build.tmpl.in
include ${prefix}/config/COB.build.tmpl.t.in
clean: cleanbase
#