forked from DC-SWAT/DreamShell
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
28 lines (20 loc) · 795 Bytes
/
Copy pathMakefile
File metadata and controls
28 lines (20 loc) · 795 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#
# DreamShell modules Makefile
# Copyright (C) 2009-2016 SWAT
# http://www.dc-swat.ru
#
_SUBDIRS = bzip2 ffmpeg isofs isoldr ppp \
luaDS luaKOS luaSDL luaGUI luaMXML luaSQL luaSTD \
mp3 ogg SDL_net sqlite3 zip luaSocket luaTask \
http xvid adx s3m tolua tolua++ vkb opkg ini aicaos \
minilzo http httpd telnetd mongoose gumbo \
bflash dreameye
all: $(patsubst %, _dir_%, $(_SUBDIRS))
$(patsubst %, _dir_%, $(_SUBDIRS)):
$(MAKE) -C $(patsubst _dir_%, %, $@)
clean: $(patsubst %, _clean_dir_%, $(_SUBDIRS))
$(patsubst %, _clean_dir_%, $(_SUBDIRS)):
$(MAKE) -C $(patsubst _clean_dir_%, %, $@) clean
install: $(patsubst %, _install_dir_%, $(_SUBDIRS))
$(patsubst %, _install_dir_%, $(_SUBDIRS)):
$(MAKE) -C $(patsubst _install_dir_%, %, $@) install