# 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 \
### 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
###########################################################################################