mirror of
https://github.com/joel16/3DSident.git
synced 2024-11-22 19:19:55 +00:00
cf84991672
- Cleaned up a bunch of functions - Now builds with the latest toolchain. - GUI uses Citro2D.
8 lines
146 B
Makefile
8 lines
146 B
Makefile
SUBDIRS = console gui
|
|
|
|
all:
|
|
@for dir in $(SUBDIRS); do $(MAKE) -C $$dir; done
|
|
|
|
clean:
|
|
@for dir in $(SUBDIRS); do $(MAKE) clean -C $$dir; done
|