1
0
mirror of https://github.com/cc65/cc65.git synced 2025-02-09 02:30:42 +00:00

DEFAULT_DEVICE; replaced some spaces with tabs

git-svn-id: svn://svn.cc65.org/cc65/trunk@2667 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cpg 2003-11-14 22:39:16 +00:00
parent 178b188eac
commit 83c2a8d517

View File

@ -2,9 +2,14 @@
# makefile for CC65 Atari runtime library
#
# NUMDRVS - number of supported drives (max. 16)
# 4 bytes for each device are statically allocated
# UCASE_FILENAME - all filenames get uppercased
# DEFAULT_DEVICE - if the string passed to the uppercase function doesn't
# include a device (":" at position 2 or 3), provide "D:"
# as a default device
# needs UCASE_FILENAME to be defined, otherwise no effect
ATARIDEFS = -DNUMDRVS=4 -DUCASE_FILENAME=1
ATARIDEFS = -DNUMDRVS=4 -DUCASE_FILENAME=1 -DDEFAULT_DEVICE=1
.SUFFIXES: .o .s .c