Skip to content

Commit

Permalink
Make build work on DOS
Browse files Browse the repository at this point in the history
Double ampersands are not supported by DOS command line interpreters. The previous would work only on (modern-ish) Windows.
  • Loading branch information
bocke authored and PerditionC committed Feb 5, 2024
1 parent 093dea9 commit 9b6a857
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion kernel/makefile
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@ kernel.exe: $(TARGET).lnk $(OBJS) $(LIBS)
$(LINK) @$(TARGET).lnk;

../bin/country.sys:
cd ..$(DIRSEP)country && $(MAKE) all
cd ..$(DIRSEP)country
$(MAKE) all
$(CP) ..$(DIRSEP)country$(DIRSEP)country.sys ..$(DIRSEP)bin$(DIRSEP)country.sys

clobber: clean
Expand Down

0 comments on commit 9b6a857

Please sign in to comment.