diff options
author | grothoff <grothoff@140774ce-b5e7-0310-ab8b-a85725594a96> | 2010-06-05 22:16:11 +0000 |
---|---|---|
committer | grothoff <grothoff@140774ce-b5e7-0310-ab8b-a85725594a96> | 2010-06-05 22:16:11 +0000 |
commit | f0b214fc09f33a8e6cbfb28dae613869588c54b6 (patch) | |
tree | 8b5ebf1421085d2f32a26a17ae320f9d265f1260 /src/include/Makefile.am | |
parent | 959a4502c4ff7b2339a857503cbd4dc31b628d0e (diff) |
install all of our headers, but not winproc unless on W32
git-svn-id: https://gnunet.org/svn/gnunet@11612 140774ce-b5e7-0310-ab8b-a85725594a96
Diffstat (limited to 'src/include/Makefile.am')
-rw-r--r-- | src/include/Makefile.am | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/src/include/Makefile.am b/src/include/Makefile.am index 72017b728c..9af3297fd6 100644 --- a/src/include/Makefile.am +++ b/src/include/Makefile.am @@ -1,17 +1,19 @@ SUBDIRS = . -EXTRA_DIST = \ - gettext.h \ - platform.h \ - plibc.h \ - winproc.h - gnunetincludedir = $(includedir)/gnunet nodist_gnunetinclude_HEADERS = \ gnunet_directories.h +if MINGW + WINPROC = winproc.h +endif + gnunetinclude_HEADERS = \ + gettext.h \ + platform.h \ + plibc.h \ + $(WINPROC) \ gnunet_arm_service.h \ gnunet_bandwidth_lib.h \ gnunet_bio_lib.h \ |