Paul Davis
449aab3c46
git-svn-id: svn://localhost/ardour2/branches/3.0@3435 d708f5d6-7413-0410-9779-e7cbd77b26cf
26 lines
558 B
Plaintext
26 lines
558 B
Plaintext
## Copyright (c) 2001
|
|
## The gtkmm development team.
|
|
##
|
|
## **** Common rules for inclusion in Makefile.am ****
|
|
##
|
|
##
|
|
## Used variable: Example content:
|
|
##
|
|
## files_general_hg = button.hg
|
|
## files_posix_hg = socket.hg
|
|
##
|
|
## Returned variable: Usage example:
|
|
##
|
|
## files_all_hg EXTRA_DIST = $(files_all_hg)
|
|
## files_hg files_built_h = $(files_hg:.hg=_p.h)
|
|
|
|
|
|
files_all_hg = $(files_general_hg) $(files_posix_hg) $(files_win32_hg)
|
|
|
|
if OS_WIN32
|
|
files_hg = $(files_general_hg) $(files_win32_hg)
|
|
else
|
|
files_hg = $(files_general_hg) $(files_posix_hg)
|
|
endif
|
|
|