#Variables
include $(SCT_DAQ_ROOT)/build/Makefile.include
#Commands
include $(SCT_DAQ_ROOT)/build/Makefile.commands

FILES = $(shell find -name "*.xml" -or -name "*.txt")
OUTFILES = $(addprefix $(ConfigDir)/,$(FILES))

#Phony Targets
.PHONY: all c++ java test install clean distclean

all: install

distclean clean:
c++:
java:
test:

install: $(OUTFILES)

$(ConfigDir)/%: % 
	mkdir -p $(@D)  && $(CPCMD)


