Root/
| 1 | # Iris: micro-kernel for a capability-based operating system. |
| 2 | # Makefile.am: build rules |
| 3 | # Copyright 2009-2012 Bas Wijnen <wijnen@debian.org> |
| 4 | # |
| 5 | # This program is free software: you can redistribute it and/or modify |
| 6 | # it under the terms of the GNU General Public License as published by |
| 7 | # the Free Software Foundation, either version 3 of the License, or |
| 8 | # (at your option) any later version. |
| 9 | # |
| 10 | # This program is distributed in the hope that it will be useful, |
| 11 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 13 | # GNU General Public License for more details. |
| 14 | # |
| 15 | # You should have received a copy of the GNU General Public License |
| 16 | # along with this program. If not, see <http://www.gnu.org/licenses/>. |
| 17 | |
| 18 | AUTOMAKE_OPTIONS = foreign |
| 19 | |
| 20 | bin_PROGRAMS = usb-server |
| 21 | |
| 22 | usb_server_SOURCES = usb-server.cc |
| 23 | usb_server_CPPFLAGS = $(SHEVEK_CFLAGS) -DSTAGE1_FILE=\"mips/nanonote/stage1.raw\" -I../include -DCOPYRIGHT_YEARS=\"2009-2012\" -DCOPYRIGHT_AUTHOR=\"Bas\ Wijnen\" -DCOPYRIGHT_EMAIL=\"wijnen@debian.org\" -D__NATIVE__ |
| 24 | usb_server_LDFLAGS = $(SHEVEK_LIBS) -lusb |
| 25 | |
| 26 | PYPP = /usr/bin/pypp |
| 27 | %.cc: %.ccp |
| 28 | $(PYPP) --name $< < $< > $@ |
| 29 | %.hh: %.hhp |
| 30 | $(PYPP) --name $< < $< > $@ |
| 31 | |
| 32 | autoclean: maintainer-clean |
| 33 | rm -rf aclocal.m4 configure Makefile.in usb-server.cc |
| 34 |
Branches:
master
