Make build work on DOS

Double ampersands are not supported by DOS command line interpreters. The previous would work only on (modern-ish) Windows.
This commit is contained in:
Bocke 2024-02-05 16:33:01 +01:00 committed by Kenneth J Davis
parent 093dea9a7b
commit 9b6a8579d1

View File

@ -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