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

HDRS := $(wildcard *.h)
Package := SctService

.PHONY: all c++ java install clean distclean install_headers

all: c++

c++: install

java:
clean:
distclean:

install: install_headers

install_headers: $(IncludeDir)/$(Package) $(addprefix $(IncludeDir)/$(Package)/,$(HDRS))

$(IncludeDir)/$(Package)/%.h: %.h
	$(CPCMD)

$(IncludeDir)/$(Package):
	$(MKDIR)

#Patterns
%.o: %.cpp
	$(CPPCMD)

# Remove this until there's some dependencies to build...
# include depend
