1## Process this file with automake to produce Makefile.in 2# 3# src/foo-server/Makefile.am 4# 5# Automake input file for an example server. 6# 7# Copyright (C) 2011-2013 Thien-Thi Nguyen 8# Copyright (C) 2000 Raimund Jacob <raimi@lkcc.org> 9# Copyright (C) 2000 Stefan Jahn <stefan@lkcc.org> 10# 11# This is free software; you can redistribute it and/or modify 12# it under the terms of the GNU General Public License as published by 13# the Free Software Foundation; either version 3, or (at your option) 14# any later version. 15# 16# This software is distributed in the hope that it will be useful, 17# but WITHOUT ANY WARRANTY; without even the implied warranty of 18# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 19# GNU General Public License for more details. 20# 21# You should have received a copy of the GNU General Public License 22# along with this package. If not, see <http://www.gnu.org/licenses/>. 23# 24 25include $(top_srcdir)/build-aux/common.mk 26 27noinst_LIBRARIES = libfoo.a 28 29libfoo_a_SOURCES = \ 30 foo-proto.h foo-proto.c 31