Skip to content

Commit

Permalink
Build: Fix header include path in clock Makefiles
Browse files Browse the repository at this point in the history
  • Loading branch information
inexorabletash committed Nov 12, 2023
1 parent 764b4bd commit b8ef97b
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion clocks/cricket/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ LDFLAGS = --config apple2-asm.cfg

OUTDIR = out

HEADERS = $(wildcard *.inc) $(wildcard ../inc/*.inc)
HEADERS = $(wildcard *.inc) $(wildcard ../../inc/*.inc)

TARGETS = \
$(OUTDIR)/prodos.mod.BIN \
Expand Down
2 changes: 1 addition & 1 deletion clocks/dclock/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ LDFLAGS = --config apple2-asm.cfg

OUTDIR = out

HEADERS = $(wildcard *.inc) $(wildcard ../inc/*.inc)
HEADERS = $(wildcard *.inc) $(wildcard ../../inc/*.inc)

TARGETS = \
$(OUTDIR)/dclock.system.SYS
Expand Down
2 changes: 1 addition & 1 deletion clocks/fujinet/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ LDFLAGS = --config apple2-asm.cfg

OUTDIR = out

HEADERS = $(wildcard *.inc) $(wildcard ../inc/*.inc)
HEADERS = $(wildcard *.inc) $(wildcard ../../inc/*.inc)

TARGETS = \
$(OUTDIR)/fn.clock.system.SYS
Expand Down
2 changes: 1 addition & 1 deletion clocks/jumbo/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ LDFLAGS = --config apple2-asm.cfg

OUTDIR = out

HEADERS = $(wildcard *.inc) $(wildcard ../inc/*.inc) \
HEADERS = $(wildcard *.inc) $(wildcard ../../inc/*.inc) \
../ns.clock/ns.clock.system.s \
../romx/romxrtc.system.s \
../dclock/dclock.system.s \
Expand Down
2 changes: 1 addition & 1 deletion clocks/ns.clock/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ LDFLAGS = --config apple2-asm.cfg

OUTDIR = out

HEADERS = $(wildcard *.inc) $(wildcard ../inc/*.inc)
HEADERS = $(wildcard *.inc) $(wildcard ../../inc/*.inc)

TARGETS = \
$(OUTDIR)/ns.clock.system.SYS \
Expand Down
2 changes: 1 addition & 1 deletion clocks/romx/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ LDFLAGS = --config apple2-asm.cfg

OUTDIR = out

HEADERS = $(wildcard *.inc) $(wildcard ../inc/*.inc)
HEADERS = $(wildcard *.inc) $(wildcard ../../inc/*.inc)

TARGETS = \
$(OUTDIR)/romxrtc.system.SYS
Expand Down

0 comments on commit b8ef97b

Please sign in to comment.