mirror of
git://projects.qi-hardware.com/iris.git
synced 2024-11-16 19:41:51 +02:00
34 lines
1.3 KiB
Makefile
34 lines
1.3 KiB
Makefile
# Iris: micro-kernel for a capability-based operating system.
|
|
# Makefile.am: build rules
|
|
# Copyright 2009-2012 Bas Wijnen <wijnen@debian.org>
|
|
#
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
AUTOMAKE_OPTIONS = foreign
|
|
|
|
bin_PROGRAMS = usb-server
|
|
|
|
usb_server_SOURCES = usb-server.cc
|
|
usb_server_CPPFLAGS = $(SHEVEK_CFLAGS) -DSTAGE1_FILE=\"mips/nanonote/sdram-setup.raw\" -I../include -DCOPYRIGHT_YEARS=\"2009-2012\" -DCOPYRIGHT_AUTHOR=\"Bas\ Wijnen\" -DCOPYRIGHT_EMAIL=\"wijnen@debian.org\"
|
|
usb_server_LDFLAGS = $(SHEVEK_LIBS) -lusb
|
|
|
|
PYPP = /usr/bin/pypp
|
|
%.cc: %.ccp
|
|
$(PYPP) --name $< < $< > $@
|
|
%.hh: %.hhp
|
|
$(PYPP) --name $< < $< > $@
|
|
|
|
autoclean: maintainer-clean
|
|
rm -rf aclocal.m4 configure Makefile.in usb-server.cc
|