]> git.webhop.me Git - bs-cst-neutrino-hd.git/commitdiff
add more choices in Makefile for plugins
authorMarkham <markham001@gmx.de>
Wed, 18 Nov 2015 17:52:35 +0000 (18:52 +0100)
committerMarkham <markham001@gmx.de>
Wed, 18 Nov 2015 17:52:35 +0000 (18:52 +0100)
Makefile
doc/config.example

index 324b02d17b74300b16fa15ba170f06c62e66b278..cb6d20023d0b70d4ad0fc29eee8bfe306aa77522 100755 (executable)
--- a/Makefile
+++ b/Makefile
@@ -203,7 +203,36 @@ multimedia:
 
 # plugins.mk
 plugins:
-       $(MAKE) $(D)/links $(D)/tuxcom $(D)/tuxcal $(D)/tuxmail $(D)/tuxwetter $(D)/blockads $(D)/getrc $(D)/msgbox $(D)/input $(D)/shellexec $(D)/logomask $(D)/logoview $(D)/cooliTSclimax $(D)/rcsim $(D)/sdparm $(D)/libfx2
+       if [ $(BASICS1) = "yes" ]; then \
+               $(MAKE) $(D)/getrc $(D)/msgbox $(D)/input $(D)/shellexec; \
+       else \
+               true; \
+       fi
+       if [ $(BASICS2) = "yes" ]; then \
+               $(MAKE) $(D)/tuxcom $(D)/tuxcal $(D)/tuxmail $(D)/blockads  $(D)/logomask $(D)/logoview; \
+       else \
+               true; \
+       fi
+       if [ $(BASICS3) = "yes" ]; then \
+               $(MAKE) $(D)/rcsim $(D)/sdparm $(D)/libfx2; \
+       else \
+               true; \
+       fi
+       if [ $(TUXWETTER) = "yes" ]; then \
+               $(MAKE) $(D)/tuxwetter; \
+       else \
+               true; \
+       fi
+       if [ $(LINKS) = "yes" ]; then \
+               $(MAKE) $(D)/links; \
+       else \
+               true; \
+       fi
+       if [ $(COOLITSCLIMAX) = "yes" ]; then \
+               $(MAKE) $(D)/cooliTSclimax; \
+       else \
+               true; \
+       fi
        if [ $(CHARTS) = "yes" ]; then \
                $(MAKE) $(D)/liga_nat $(D)/boerse $(D)/rssnews $(D)/tanken $(D)/wetter $(D)/formel1; \
        else \
index a65844afeb4816f8ab35f4f77c2b686462ae1023..cc8f99449c3822a37033ce8b026101d5b5fedeeb 100755 (executable)
@@ -115,14 +115,32 @@ MULTIMEDIA=no
 ### PART 4 # PLUGINS # OPTIONAL ###########################################################
 ###########################################################################################
 
-# if you want to build charts (optional), define CHARTS=yes:
-# CHARTS=yes
-# CHARTS=no
+# if you want to build BASICS1 (optional), define BASICS1=yes/no
+# getrc, msgbox, input, shellexec
+BASICS1=no
+
+# if you want to build BASICS2 (optional), define BASICS2=yes/no
+# tuxcom, tuxcal, tuxmail, blockads, logomask, logoview
+BASICS2=no
+
+# if you want to build BASICS3 (optional), define BASICS3=yes/no
+# rcsim, sdparm, libfx2
+BASICS3=no
+
+# if you want to build TUXWETTER (optional), define TUXWETTER=yes/no
+TUXWETTER=no
+
+# if you want to build LINKS (optional), define LINKS=yes/no
+LINKS=no
+
+# if you want to build cooliTSclimax (optional), define COOLITSCLIMAX=yes/no
+COOLITSCLIMAX=no
+
+# if you want to build charts (optional), define CHARTS=yes/no
+# liga_nat, boerse, rssnews, tanken, wetter, formel1
 CHARTS=no
 
-# if you want to build games (optional), define GAMES=yes:
-# GAMES=yes
-# GAMES=no
+# if you want to build games (optional), define GAMES=yes/no
 GAMES=no
 
 ###########################################################################################