mirror of
https://github.com/edeproject/ede.git
synced 2023-08-10 21:13:03 +03:00
65018f75b7
emenueditor
20 lines
421 B
Makefile
Executable File
20 lines
421 B
Makefile
Executable File
include ../makeinclude
|
|
|
|
Data = ede.conf wmanager.conf mime.conf efltk.conf mimetypes.conf
|
|
DIR = $(datadir)/ede/.ede
|
|
|
|
install:
|
|
$(MKINSTALLDIRS) $(DIR)
|
|
$(INSTALL_DATA) ede.conf $(DIR)
|
|
$(INSTALL_DATA) wmanager.conf $(DIR)
|
|
$(INSTALL_DATA) mime.conf $(DIR)
|
|
$(INSTALL_DATA) efltk.conf $(DIR)
|
|
$(MKINSTALLDIRS) $(bindir)
|
|
$(INSTALL_PROGRAM) startede $(bindir)
|
|
|
|
uninstall:
|
|
$(RM) -r $(DIR)
|
|
$(RM) $(bindir)/startede
|
|
|
|
clean:
|