mirror of
https://github.com/JGRennison/OpenTTD-patches.git
synced 2024-11-13 07:10:57 +00:00
24 lines
344 B
Makefile
24 lines
344 B
Makefile
|
|
SQUIRREL=.
|
|
MAKE=make
|
|
|
|
sq32:
|
|
cd squirrel; $(MAKE)
|
|
cd sqstdlib; $(MAKE)
|
|
cd sq; $(MAKE)
|
|
|
|
sqprof:
|
|
cd squirrel; $(MAKE) sqprof
|
|
cd sqstdlib; $(MAKE) sqprof
|
|
cd sq; $(MAKE) sqprof
|
|
|
|
sq64:
|
|
cd squirrel; $(MAKE) sq64
|
|
cd sqstdlib; $(MAKE) sq64
|
|
cd sq; $(MAKE) sq64
|
|
|
|
clean:
|
|
$(MAKE) -C squirrel clean
|
|
$(MAKE) -C sqstdlib clean
|
|
$(MAKE) -C sq clean
|