26 lines
508 B
Makefile
26 lines
508 B
Makefile
SUBDIRS=framework \
|
|
gamelib \
|
|
ivis_common \
|
|
ivis_opengl \
|
|
netplay \
|
|
script \
|
|
sequence \
|
|
sound \
|
|
widget
|
|
|
|
.PHONY: $(SUBDIRS)
|
|
all clean: $(SUBDIRS)
|
|
|
|
$(SUBDIRS):
|
|
$(MAKE) -f Makefile.raw -C $@ $(MAKECMDGOALS)
|
|
|
|
# Dependencies not needed, since no linking done?
|
|
#gamelib: framework ivis_common ivis_opengl sound
|
|
#ivis_common: framework gamelib
|
|
#ivis_opengl: framework ivis_common gamelib
|
|
#netplay: framework
|
|
#script: framework
|
|
#sequence: framework
|
|
#sound: framework gamelib
|
|
#widget: framework ivis_common
|