Increase the dososity

This commit is contained in:
Steve Chamberlain 1992-02-22 00:18:39 +00:00
parent da8bae6dfe
commit 01dc8d2d2e
3 changed files with 30 additions and 0 deletions

View File

@ -27,6 +27,8 @@ Things-to-keep:
Inputrc
Makefile
Makefile.dos
configure.bat
fileman.c
manexamp.c

View File

@ -0,0 +1,12 @@
# This is the Makefile for the examples subdirectory of readline. -*- text -*-
#
EXECUTABLES = fileman
CFLAGS = -g -I../.. -D__MSDOS__ -D__GO32__
LDFLAGS = -g -L..
fileman: fileman.o
$(CC) $(LDFLAGS) -o fileman fileman.o -lreadline -lpc
fileman.o: fileman.c

View File

@ -0,0 +1,16 @@
@echo off
if "%1" == "go32" goto h8300
if "%1" == "h8/300" goto h8300
echo Specify one of [ go32 h8/300 ] on command line
goto exit
:go32
echo Configuring readline/examples for go32
copy Makefile.dos Makefile
goto exit
:h8300
echo Configuring readline/examples for H8/300
copy Makefile.dos Makefile
:exit