mirror of
git://projects.qi-hardware.com/iris.git
synced 2024-11-05 16:04:04 +02:00
34 lines
1.1 KiB
Makefile
34 lines
1.1 KiB
Makefile
# Iris: micro-kernel for a capability-based operating system.
|
|
# mips/nanonote/server/Makefile.am: build rules
|
|
# Copyright 2009 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\" -DSTAGE2_FILE=\"iris.raw\"
|
|
usb_server_LDFLAGS = $(SHEVEK_LIBS) -lusb
|
|
|
|
PYPP = /usr/bin/pypp
|
|
%.cc: %.ccp
|
|
$(PYPP) --name $< < $< > $@
|
|
|
|
run:
|
|
$(top_buiddir)/usb-server
|
|
|
|
BUILT_SOURCES = usb-server.cc
|