mirror of
https://github.com/scratchfoundation/Scratch_1.4.git
synced 2024-12-01 03:36:50 -05:00
14 lines
339 B
Makefile
14 lines
339 B
Makefile
|
all: clean build
|
||
|
|
||
|
build:
|
||
|
$(MAKE) build -C src/plugins/scratch/
|
||
|
$(MAKE) build -C src/plugins/unicode/
|
||
|
$(MAKE) build -C src/plugins/camera/
|
||
|
$(MAKE) build -C src/plugins/wedo/
|
||
|
|
||
|
clean:
|
||
|
$(MAKE) clean -C src/plugins/scratch/
|
||
|
$(MAKE) clean -C src/plugins/unicode/
|
||
|
$(MAKE) clean -C src/plugins/camera/
|
||
|
$(MAKE) clean -C src/plugins/wedo/
|