36 lines
552 B
Makefile
36 lines
552 B
Makefile
#
|
|
# Makefile.in for the Tiny COBOL compiler
|
|
#
|
|
SHELL=/bin/sh
|
|
|
|
@SET_MAKE@
|
|
|
|
prefix=@prefix@
|
|
exec_prefix=@exec_prefix@
|
|
|
|
RM= rm -f
|
|
MKDIR=mkdir -p
|
|
|
|
INSTALL=@INSTALL@
|
|
INSTALL_DATA=@INSTALL_DATA@
|
|
|
|
INSTCOPY=@cobcpy_default@
|
|
|
|
#
|
|
|
|
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)
|