1
0
mirror of https://github.com/cc65/cc65.git synced 2025-01-10 19:29:45 +00:00

Merge remote-tracking branch 'upstream/master' into movesamples

This commit is contained in:
mrdudz 2022-02-05 17:48:09 +01:00
commit 9308f5147d
4 changed files with 18 additions and 6 deletions

View File

@ -23,7 +23,9 @@ jobs:
- name: Build the tools.
shell: bash
run: make -j2 bin USER_CFLAGS=-Werror
run: |
make -j2 bin USER_CFLAGS=-Werror
make -j2 util
- name: Build the platform libraries.
shell: bash
run: make -j2 lib QUIET=1

View File

@ -47,7 +47,9 @@ jobs:
- name: Build the tools.
shell: bash
run: make -j2 bin USER_CFLAGS=-Werror
run: |
make -j2 bin USER_CFLAGS=-Werror
make -j2 util
- name: Build the platform libraries.
shell: bash
run: make -j2 lib QUIET=1
@ -60,6 +62,9 @@ jobs:
- name: Remove the output from the samples tests.
shell: bash
run: make -C samples clean
- name: Remove programs in util directory
shell: bash
run: make -j2 util clean
- name: Build the document files.
shell: bash
run: make -j2 doc

View File

@ -6,8 +6,8 @@ all mostlyclean clean install zip:
@$(MAKE) -C src --no-print-directory $@
@$(MAKE) -C libsrc --no-print-directory $@
@$(MAKE) -C doc --no-print-directory $@
@$(MAKE) -C samples --no-print-directory $@
@$(MAKE) -C util --no-print-directory $@
@$(MAKE) -C samples --no-print-directory $@
avail unavail bin:
@$(MAKE) -C src --no-print-directory $@

View File

@ -662,6 +662,11 @@ EXELIST_sim6502 = \
EXELIST_sim65c02 = $(EXELIST_sim6502)
# omitted: arg-test clock clock-test conio cpeek-test cprintf cursor deb dir-test
# div-test em-test exec-test1 exec-test2 fileio-test ft getopt-test heaptest
# joy-test moddiv-test mouse-test mul-test posixio-test rename-test scanf-test
# ser-test seek strdup-test strnlen stroserror-test strqtok-test tinyshell uname-test
EXELIST_atari2600 = \
minimal
@ -671,6 +676,9 @@ EXELIST_atari5200 = \
EXELIST_gamate = \
minimal
EXELIST_lynx = \
minimal
EXELIST_supervision = \
minimal
@ -682,9 +690,6 @@ EXELIST_bbc = \
EXELIST_lunix = \
notavailable
EXELIST_lynx = \
minimal
# Unlisted targets will try to build everything.
# That lets us learn what they cannot build, and what settings
# we need to use for programs that can be built and run.