blob: 034358ec761506a8bfc33b8cb38b2addcceead39 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
TOP = ..
include $(TOP)/mk/boilerplate.mk
all :: index.html
index.html : $(HS_SRCS) $(HADDOCK_INPLACE)
$(HADDOCK_INPLACE) -h $(HS_SRCS)
CLEAN_FILES += index.html
include $(TOP)/mk/target.mk
|