New module for command line parsing

git-svn-id: svn://svn.cc65.org/cc65/trunk@63 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz
2000-06-14 07:09:10 +00:00
parent 9cc25f13b6
commit 94cee5c9b2
4 changed files with 246 additions and 2 deletions

View File

@@ -10,8 +10,9 @@ LIB = common.a
OBJS = bitops.o \
cmdline.o \
hashstr.o \
xsprintf.o
xsprintf.o
# ------------------------------------------------------------------------------

View File

@@ -66,10 +66,11 @@ CCCFG = -bt=$(TARGET) -d1 -onatx -zp4 -5 -zq -w2
# All library OBJ files
OBJS = bitops.obj \
cmdline.obj \
hashstr.obj \
wildargv.obj \
xsprintf.obj
.PRECIOUS $(OBJS:.obj=.cc) $(LIB)