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:
parent
093dea9a7b
commit
9b6a8579d1
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user