Give AT driver 8k stack instead of 1k.. probably not necessary, but 1k

is a little meager, so let's be on the safe side
This commit is contained in:
Ben Gras 2005-08-09 14:45:10 +00:00
parent a4ae9574e9
commit f902df5c5a

View file

@ -24,7 +24,7 @@ LIBDRIVER = $d/libdriver/driver.o $d/libdriver/drvlib.o
all build: $(DRIVER)
$(DRIVER): $(OBJ) $(LIBDRIVER)
$(CC) -o $@ $(LDFLAGS) $(OBJ) $(LIBDRIVER) $(LIBS)
install -S 256w $(DRIVER)
install -S 8k $(DRIVER)
$(LIBDRIVER):
cd $d/libdriver && $(MAKE)