1
0
mirror of https://github.com/cc65/cc65.git synced 2024-09-22 18:29:30 +00:00

rename W2CAS.COM to w2cas.com (lowercase)

This commit is contained in:
Christian Groessler 2014-03-03 18:12:11 +01:00
parent 69f81f6d67
commit 7a9fa9d4cd
2 changed files with 3 additions and 3 deletions

View File

@ -230,7 +230,7 @@ The size of a cassette boot file is restricted to 32K. Larger programs
would need to be split in more parts and the parts to be loaded manually.
To write the generated file to a cassette, a utility to run
on an Atari is provided (<tt/W2CAS.COM/).
on an Atari is provided in the <tt/targetutil/ directory (<tt/w2cas.com/).
<sect1><tt/atarixl/ config files<p>

View File

@ -6,9 +6,9 @@ DEPS += ../wrk/$(TARGET)/w2cas.d
../wrk/$(TARGET)/w2cas.o: $(SRCDIR)/targetutil/w2cas.c | ../wrk/$(TARGET)
$(COMPILE_recipe)
../targetutil/W2CAS.COM: ../wrk/$(TARGET)/w2cas.o ../lib/$(TARGET).lib | ../targetutil
../targetutil/w2cas.com: ../wrk/$(TARGET)/w2cas.o ../lib/$(TARGET).lib | ../targetutil
$(LD65) -o $@ -t $(TARGET) $^
$(TARGET): ../targetutil/W2CAS.COM
$(TARGET): ../targetutil/w2cas.com
endif