37 lines
627 B
Makefile
37 lines
627 B
Makefile
# Generated automatically from Makefile.in by configure.
|
|
#
|
|
# Makefile.in for the Tiny COBOL compiler
|
|
#
|
|
SHELL=/bin/sh
|
|
|
|
|
|
|
|
prefix=/usr/local
|
|
exec_prefix=${prefix}
|
|
|
|
RM= rm -f
|
|
MKDIR=mkdir -p
|
|
|
|
INSTALL=/usr/bin/install -c
|
|
INSTALL_DATA=${INSTALL} -m 644
|
|
|
|
INSTCOPY=${prefix}/share/htcobol/copybooks
|
|
|
|
#
|
|
|
|
CPYBKS1=CMDLine.cpy
|
|
CPYBKS2=CMDLine1.cpy
|
|
CPYBKS3=ENVAR1.cpy
|
|
CPYBKS4=screen.cpy
|
|
|
|
all:
|
|
|
|
clean:
|
|
|
|
install:
|
|
$(MKDIR) $(INSTCOPY)
|
|
# ${INSTALL_DATA} $(CPYBKS1) $(INSTCOPY)/$(CPYBKS1)
|
|
# ${INSTALL_DATA} $(CPYBKS2) $(INSTCOPY)/$(CPYBKS2)
|
|
# ${INSTALL_DATA} $(CPYBKS3) $(INSTCOPY)/$(CPYBKS3)
|
|
${INSTALL_DATA} $(CPYBKS4) $(INSTCOPY)/$(CPYBKS4)
|