mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-09-10 12:22:20 +08:00
Increase the dososity
This commit is contained in:
@ -27,6 +27,8 @@ Things-to-keep:
|
|||||||
|
|
||||||
Inputrc
|
Inputrc
|
||||||
Makefile
|
Makefile
|
||||||
|
Makefile.dos
|
||||||
|
configure.bat
|
||||||
fileman.c
|
fileman.c
|
||||||
manexamp.c
|
manexamp.c
|
||||||
|
|
||||||
|
12
readline/examples/Makefile.dos
Normal file
12
readline/examples/Makefile.dos
Normal 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
|
||||||
|
|
16
readline/examples/configure.bat
Normal file
16
readline/examples/configure.bat
Normal 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
|
Reference in New Issue
Block a user