LIBACKIS := libackis/ackiscomponent.d kxml/xml.d futures/future.d MODSAMPLE := -o mod_sample mod_sample.d CLISAMPLE := -o client_sample client_sample.d mod_sample: gdc $(MODSAMPLE) $(LIBACKIS) mod_debug: gdc $(MODSAMPLE) $(LIBACKIS) -fdebug mod_xdebug: gdc $(MODSAMPLE) $(LIBACKIS) -fdebug=2 mod_xmldebug: gdc $(MODSAMPLE) $(LIBACKIS) -fdebug -fdebug=xml client_sample: gdc $(CLISAMPLE) $(LIBACKIS) client_debug: gdc $(CLISAMPLE) $(LIBACKIS) -fdebug client_xdebug: gdc $(CLISAMPLE) $(LIBACKIS) -fdebug=2 client_xmldebug: gdc $(CLISAMPLE) $(LIBACKIS) -fdebug -fdebug=xml clean: rm -f *.o mod_sample client_sample