1# Makefile: OpenVanilla Framework and Platform-Dependent Loader
2# Copyright (c) 2004-2006 The OpenVanilla Project
3# Please see License/license.txt for the terms of use
4
5# MAKEFLAGS is always passed onto the next make session in recursive making
6
7OS=`uname`
8
9all:
10	make -f Makefile.$(OS) $@
11
12install:
13	make -f Makefile.$(OS) $@
14
15uninstall:
16	make -f Makefile.$(OS) $@
17
18clean:
19	make -f Makefile.$(OS) $@
20
21