diff options
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | conio/Makefile | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -198,7 +198,7 @@ mydos: clean all # We use our own custom conio instead of the one cc65 ships. # see conion/README for details. conio/conio.lib: - $(MAKE) -C conio + cd conio && $(MAKE) # The game binary is a multi-part binary load file. This rule # depends on all the pieces, and just concatenates them. We used diff --git a/conio/Makefile b/conio/Makefile index 4679d31..9b0911e 100644 --- a/conio/Makefile +++ b/conio/Makefile @@ -5,7 +5,7 @@ OBJS=cgetc.o chline.o clrscr.o cputc.o cputs.o cvline.o gotox.o gotoxy.o gotoy.o conio.lib: $(OBJS) ar65 a conio.lib *.o -%.o: %.s +.s.o: cl65 -O -t atari -c $< clean: |