Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Makefile.am create empty directory

Using autotools, I need to create an empty directory tree when typing make install, like:

/etc/myprg/
|-- foo

right now, I do this by specifying empty targets, like this:

myprgdir = $(sysconfdir)/myprg/
myprgfoodir = $(sysconfdir)/myprg/foo

and then

dist_myprg_DATA = 
dist_myprgfoo_DATA = 

But, I wonder if a better way to do something like this exists!

like image 364
Cristiano Avatar asked Dec 15 '11 10:12

Cristiano


Video Answer


1 Answers

Perhaps like this:

install-data-local:
    $(MKDIR_P) $(DESTDIR)$(sysconfdir)/myprg/foo

uninstall-local:
    rmdir $(DESTDIR)$(sysconfdir)/myprg/foo 2>/dev/null || :

You have to specify AC_PROG_MKDIR_P in configure.ac as well.

like image 75
ptomato Avatar answered Oct 12 '22 07:10

ptomato