LIBACKIS := libackis/ackiscomponent.d kxml/xml.d futures/future.d MODSAMPLE := -o mod_sample mod_sample.d CLISAMPLE := -o client_sample client_sample.d RESSAMPLE := -o res_sample res_sample.d all_xdebug: mod_xdebug client_xdebug res_xdebug 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 res_sample: gdc $(RESSAMPLE) $(LIBACKIS) res_debug: gdc $(RESSAMPLE) $(LIBACKIS) -fdebug res_xdebug: gdc $(RESSAMPLE) $(LIBACKIS) -fdebug=2 res_xmldebug: gdc $(RESSAMPLE) $(LIBACKIS) -fdebug -fdebug=xml clean: rm -f *.o mod_sample client_sample res_sample