mirror of
https://github.com/dyne/FreeJ.git
synced 2026-02-11 07:19:32 +01:00
a GNUmakefile.in which acts like a proxy to the real Makefile has been added to lib/javascript to hook it into freej buildsystem, this means it will work only with GNU make but it is the only file needed into lib/javascript/
38 lines
556 B
Makefile
38 lines
556 B
Makefile
if BUILD_FLASH
|
|
FLASHDIR = flash
|
|
endif
|
|
|
|
if BUILD_JAVASCRIPT
|
|
JAVASCRIPTDIR = javascript
|
|
endif
|
|
|
|
if BUILD_SDLGFX
|
|
SDLGFXDIR = sdl_gfx
|
|
endif
|
|
|
|
if BUILD_SDLTTF
|
|
SDLTTFDIR = sdl_ttf
|
|
endif
|
|
|
|
if BUILD_SDLIMAGE
|
|
SDLIMAGEDIR = sdl_image
|
|
endif
|
|
|
|
SUBDIRS = ccvt \
|
|
slw \
|
|
$(SDLIMAGEDIR) \
|
|
$(SDLTTFDIR) \
|
|
$(SDLGFXDIR) \
|
|
$(JAVASCRIPTDIR) \
|
|
$(FLASHDIR)
|
|
|
|
## XXX(godog) after lib/javascript is gone remove this
|
|
#DIST_SUBDIRS = ccvt \
|
|
# slw \
|
|
# sdl_image \
|
|
# sdl_ttf \
|
|
# sdl_gfx \
|
|
# flash
|
|
#
|
|
#EXTRA_DIST = javascript
|