Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
jedeoric committed Feb 5, 2024
1 parent 33b3e51 commit 262fda7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,11 @@ jobs:
run: mv cc65 ../ && mv orix-software ../ && mv orix-sdk ../ && mv md2hlp ../

- name: Compile project
run: CC65_HOME=${GITHUB_WORKSPACE}/../cc65 make
run: |
ls -l
echo $CC65_HOME
ls -l $CC65_HOME
CC65_HOME=${GITHUB_WORKSPACE}/../cc65 make
- name: List build directory content
run: ls -lR build
Expand Down
4 changes: 0 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
SOURCES8=$(wildcard src/6502/*.s)
OBJECTS8=$(SOURCES8:.s=.o)

#SOURCES16=$(wildcard src/65c816/*.s)
#OBJECTS16=$(SOURCES16:.s=.o)


ifeq ($(CC65_HOME),)
CC = cl65
Expand All @@ -17,7 +14,6 @@ else
AR = $(CC65_HOME)/bin/ar65
endif


all: $(SOURCES8) $(OBJECTS8) tool

$(OBJECTS8): $(SOURCES8)
Expand Down

0 comments on commit 262fda7

Please sign in to comment.