1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-07 07:29:33 +00:00

Added Makefile for targettest/sym1

This commit is contained in:
Wayne Parham 2021-06-07 11:50:47 -05:00
parent 79757ee280
commit 6cf4bd99bb
6 changed files with 69 additions and 10 deletions

55
targettest/sym1/Makefile Normal file
View File

@ -0,0 +1,55 @@
# Run 'make SYS=<target>'; or, set a SYS env.
# var. to build for another target system.
SYS ?= sym1
# Just the usual way to find out if we're
# using cmd.exe to execute make rules.
ifneq ($(shell echo),)
CMD_EXE = 1
endif
ifdef CMD_EXE
NULLDEV = nul:
DEL = -del /f
RMDIR = rmdir /s /q
else
NULLDEV = /dev/null
DEL = $(RM)
RMDIR = $(RM) -r
endif
ifdef CC65_HOME
AS = $(CC65_HOME)/bin/ca65
CC = $(CC65_HOME)/bin/cc65
CL = $(CC65_HOME)/bin/cl65
LD = $(CC65_HOME)/bin/ld65
else
AS := $(if $(wildcard ../../../bin/ca65*),../../../bin/ca65,ca65)
CC := $(if $(wildcard ../../../bin/cc65*),../../../bin/cc65,cc65)
CL := $(if $(wildcard ../../../bin/cl65*),../../../bin/cl65,cl65)
LD := $(if $(wildcard ../../../bin/ld65*),../../../bin/ld65,ld65)
endif
all: symHello.bin symTiny.bin symDisplay.bin symIO.bin symNotepad.bin
symHello.bin: symHello.c
$(CL) -t $(SYS) -C sym1-4k.cfg -O -o symHello.bin symHello.c
symTiny.bin: symTiny.c
$(CL) -t $(SYS) -C sym1-4k.cfg -O -o symTiny.bin symTiny.c
symDisplay.bin: symDisplay.c
$(CL) -t $(SYS) -C sym1-4k.cfg -O -o symDisplay.bin symDisplay.c
symIO.bin: symIO.c
$(CL) -t $(SYS) -C sym1-32k.cfg -O -o symIO.bin symIO.c
symNotepad.bin: symNotepad.c
$(CL) -t $(SYS) -C sym1-32k.cfg -O -o symNotepad.bin symNotepad.c
clean:
@$(DEL) symHello.bin 2>$(NULLDEV)
@$(DEL) symTiny.bin 2>$(NULLDEV)
@$(DEL) symDisplay.bin 2>$(NULLDEV)
@$(DEL) symIO.bin 2>$(NULLDEV)
@$(DEL) symNotepad.bin 2>$(NULLDEV)

View File

@ -6,7 +6,8 @@
// wayne@parhamdata.com
// --------------------------------------------------------------------------
#include <symio.h>
#include <stdio.h>
#include <sym1.h>
void main (void) {
int delay = 10;

View File

@ -6,7 +6,8 @@
// wayne@parhamdata.com
// --------------------------------------------------------------------------
#include <symio.h>;
#include <stdio.h>
#include <sym1.h>
void main(void) {
char c = 0x00;

View File

@ -6,10 +6,10 @@
// wayne@parhamdata.com
// --------------------------------------------------------------------------
#include <stdio.h>;
#include <symio.h>;
#include <stdlib.h>;
#include <string.h>;
#include <sym1.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
void main(void) {
int ddr1a = 0x00;

View File

@ -12,9 +12,10 @@
//
// --------------------------------------------------------------------------
#include <symio.h>;
#include <stdlib.h>;
#include <string.h>;
#include <sym1.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define TAPIO_ADDRESS 0xE000
#define TAPIO_MAX_SIZE 0x0FFF

View File

@ -8,7 +8,8 @@
// wayne@parhamdata.com
// --------------------------------------------------------------------------
#include <symio.h>;
#include <stdio.h>
#include <sym1.h>
void main(void) {
char c = 0x00;