mirror of
https://github.com/edeproject/ede.git
synced 2023-08-10 21:13:03 +03:00
65018f75b7
emenueditor
27 lines
385 B
Makefile
Executable File
27 lines
385 B
Makefile
Executable File
include ../../makeinclude
|
|
|
|
Data = ede-small.gif\
|
|
index.html\
|
|
authors.html\
|
|
changelog.html\
|
|
copying.html\
|
|
help.html\
|
|
logoinvert100.png\
|
|
getede.png\
|
|
ede.png\
|
|
style.css
|
|
|
|
DIR = $(datadir)/ede/doc
|
|
|
|
install:
|
|
echo "Installing docs";
|
|
$(MKINSTALLDIRS) $(DIR)
|
|
for f in $(Data); do\
|
|
$(INSTALL_DATA) $$f $(DIR);\
|
|
done
|
|
|
|
uninstall:
|
|
$(RM) -r $(DIR)
|
|
|
|
clean:
|