Set the install permissions correctly
--HG-- extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401398
This commit is contained in:
parent
ecb484cb9c
commit
92b598f538
1 changed files with 4 additions and 4 deletions
|
@ -64,20 +64,20 @@ install-hdrs:
|
|||
$(SHELL) $(auxdir)/mkinstalldirs $(includedir)/SDL
|
||||
for src in $(srcdir)/include/*.h; do \
|
||||
file=`echo $$src | sed -e 's|^.*/||'`; \
|
||||
$(INSTALL) $$src $(includedir)/SDL/$$file; \
|
||||
$(INSTALL) -m 644 $$src $(includedir)/SDL/$$file; \
|
||||
done
|
||||
$(INSTALL) include/SDL_config.h $(includedir)/SDL/SDL_config.h
|
||||
$(INSTALL) -m 644 include/SDL_config.h $(includedir)/SDL/SDL_config.h
|
||||
install-lib:
|
||||
$(SHELL) $(auxdir)/mkinstalldirs $(libdir)
|
||||
$(LIBTOOL) --mode=install $(INSTALL) $(objects)/$(TARGET) $(libdir)/$(TARGET)
|
||||
install-data:
|
||||
$(SHELL) $(auxdir)/mkinstalldirs $(datadir)/aclocal
|
||||
$(INSTALL) $(srcdir)/sdl.m4 $(datadir)/aclocal/sdl.m4
|
||||
$(INSTALL) -m 644 $(srcdir)/sdl.m4 $(datadir)/aclocal/sdl.m4
|
||||
install-man:
|
||||
$(SHELL) $(auxdir)/mkinstalldirs $(mandir)/man3
|
||||
for src in $(srcdir)/docs/man3/*.3; do \
|
||||
file=`echo $$src | sed -e 's|^.*/||'`; \
|
||||
$(INSTALL) $$src $(mandir)/man3/$$file; \
|
||||
$(INSTALL) -m 644 $$src $(mandir)/man3/$$file; \
|
||||
done
|
||||
|
||||
uninstall: uninstall-bin uninstall-hdrs uninstall-lib uninstall-man
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue