# $HeadURL$ $LastChangedRevision$ ifndef FACILITY_AUDIO_MK FACILITY_AUDIO_MK = 1 # In pass #1: load recipe generators # In pass #0: load generated recipes # Variables mentioned both in pass#1 and pass#0. # Tell recipe generators what to generate recipes for ifeq ($(PCMS_PASS_NUM),1) # The real Makefile else ifeq ($(PCMS_PASS_NUM),0) all.facility: audio.facility ifeq ($(AUDIO_SERVER_FLAG),false) audio.facility: touch $@ else ifeq ($(HOST_VM_FLAG),true) audio.facility: dummy-sound.fix touch $@ else audio.facility: normal-sound.fix touch $@ endif dummy-sound.fix: /etc/modules touch $@ /etc/modules: lineinfile --after=EOF --text='snd-dummy' --file=/etc/modules touch $@ normal-sound.fix: touch $@ endif # PCMS_PASS_NUM endif # FACILITY_AUDIO_MK