Update of /cvsroot/liboss/liboss/include
In directory usw-pr-cvs1:/tmp/cvs-serv7367/include
Added Files:
Makefile.am
Log Message:
Fix for install phase
--- NEW FILE: Makefile.am ---
##
## Process this file with automake to produce Makefile.in
##
include_HEADERS = $(top_srcdir)/include/soundcard.h
noinst_HEADERS =
###
# Install header files (default=$includedir/sys)
#
install-includeHEADERS:
@$(NORMAL_INSTALL)
$(mkinstalldirs) $(DESTDIR)$(includedir)/sys
@list='$(include_HEADERS)'; for p in $$list; do \
if test -f "$$p"; then d= ; else d="$(srcdir)/"; fi; \
echo " $(INSTALL_DATA) $$d$$p $(DESTDIR)$(includedir)/sys/$$p"; \
$(INSTALL_DATA) $$d$$p $(DESTDIR)$(includedir)/sys/$$p; \
done
###
# Remove them
#
uninstall-includeHEADERS:
@$(NORMAL_UNINSTALL)
list='$(include_HEADERS)'; for p in $$list; do \
rm -f $(DESTDIR)$(includedir)/sys/$$p; \
done
mostlyclean-generic:
-rm -f *~ \#* .*~ .\#*
maintainer-clean-generic:
-@echo "This command is intended for maintainers to use;"
-@echo "it deletes files that may require special tools to rebuild."
-rm -f Makefile.in
|