##
## Copyright (c) 2002 David Santo Orcero irbis@orcero.org
## http://www.orcero.org/irbis
## Mosix is (c) of prof. Barak http://www.mosix.org
## OpenMosix is (c) of Moshe Bar http://www.openmosix.com
## Each respective trademark is of its own owner
## All rights reserved.
## This software is distributed under GPL 2
##
## THIS SOFTWARE IS PROVIDED "AS IS". NO WARRANTY IS ASSUMED.
## NO LIABILITY OF ANY KIND FOR ANY DAMAGES WHATSOEVER RESULTING
## FROM THE USE OF THIS SOFTWARE WILL BE ACCEPTED. IT CAN BURN
## YOUR HARD DISK, ERASE ALL YOUR DATA AND BROKE DOWN YOUR 
## MICROWAVE OVEN. YOU ARE ADVISED.
##

# You MUST change this
# Here is an OpenMosix kernel
OPENMOSIX	=	../linux

# Where is the OpenMosix data
# Mosix and OpenMosix before 1.5.5: put /proc/mos here
# OpenMosix 1.5.4: put /proc/hpc here
PROCDIR = /proc/hpc
#PROCDIR=/proc/mos


# mon userland tool use the same name of mon, a common used
# monitoring tool. If you want no headaches, the best is
# to change the name.
# Recommened
MONNAME=mosmon
# Old fasion
# MONNAME=mon
# The Debian way
# MONNAME=mmon

# Which is is the C compiler
CC=gcc

# Where we are going to install
INSTALLDIR=$(DESTDIR)
# INSTALLDIR=/usr/local


#  From here to the end, you must do what are doing before
# touching.

# C flags

CFLAGS  =       -Wall -I./ -I/usr/include -I$(OPENMOSIX)/include \
	-Wpointer-arith --pedantic   -Wcast-qual  -Wconversion \
	 -Wwrite-strings   -Wredundant-decls -O2


#  Installer
INSTALL =       /usr/bin/install


