Travis-CI: Build using linux

This commit is contained in:
Joshua Bell 2021-03-07 16:40:19 -08:00
parent 8103042421
commit 71ad9bda97
2 changed files with 5 additions and 1 deletions

View File

@ -1,5 +1,5 @@
sudo: enabled
os: osx
os: linux
language: c
install:

View File

@ -6,6 +6,8 @@ OUTDIR = out
TARGETS = $(OUTDIR)/chtype.BIN $(OUTDIR)/chtime.BIN
XATTR := $(shell command -v xattr 2> /dev/null)
.PHONY: clean all
all: $(OUTDIR) $(TARGETS)
@ -25,4 +27,6 @@ $(OUTDIR)/%.o: %.s $(HEADERS)
$(OUTDIR)/%.BIN $(OUTDIR)/%.SYS: $(OUTDIR)/%.o
ld65 $(LDFLAGS) -o $@ $<
ifdef XATTR
xattr -wx prodos.AuxType '00 20' $@
endif