Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
blog:commodore_pet_compiler [2021/11/25 15:46] – john | blog:commodore_pet_compiler [2021/11/29 15:20] (current) – [Commodore PET - Software Development] john | ||
---|---|---|---|
Line 41: | Line 41: | ||
$(TARGET): | $(TARGET): | ||
- | @echo "" | ||
- | @echo " | ||
- | @echo " -= $(TARGET) =-" | ||
- | @echo "" | ||
- | @echo Linking .... | ||
$(LD) $(LDFLAGS) --obj $(OBJFILES) $(LIBS) -o bin/ | $(LD) $(LDFLAGS) --obj $(OBJFILES) $(LIBS) -o bin/ | ||
Line 64: | Line 59: | ||
clean: | clean: | ||
rm -f src/*.o | rm -f src/*.o | ||
- | rm -f src/*.s | ||
rm -f bin/ | rm -f bin/ | ||
</ | </ | ||
- | === Documentation & Library Reference === | + | ==== Documentation & Library Reference |
* Commodore PET specific functions (which are very few) are defined in **pet.h**, found in the //include// directory of the cc65 installation. | * Commodore PET specific functions (which are very few) are defined in **pet.h**, found in the //include// directory of the cc65 installation. | ||
* CC65 implementation guidance can be found [[https:// | * CC65 implementation guidance can be found [[https:// | ||
+ | * The CC65 standard library can be found [[https:// |