## ## 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. ## # Here is an OpenMosix kernel OPENMOSIX = /usr/src/linux-openmosix # Use only an absolute path. # i.e.: /home/irbis/openMosix/cvsom/linux-openmosix/linux-openmosix WORKS # ../linux-openmosix/linux-openmosix DOES NOT WORK # Where we are going to install DESTDIR = / BINDIR = $(DESTDIR)/bin SBINDIR = $(DESTDIR)/sbin LIBDIR = $(DESTDIR)/lib INCLUDEDIR = $(DESTDIR)/usr/include MANDIR = $(DESTDIR)/usr/share/man SYSCONFDIR = $(DESTDIR)/etc RCDIR = $(DESTDIR)/etc/init.d # mon userland tool used the same name of mon, a common used # monitoring tool. If you want no headaches, the best is to change the # name. MONNAME=mosmon # Which is is the C compiler and flags CC = gcc CFLAGS = -Wall -O2 -I../moslib -I$(OPENMOSIX)/include -I. # -pedantic -Wconversion -Wpointer-arith -Wcast-qual -Wwrite-strings -Wredundant-decls LDFLAGS = --strip-all -Wl,--warn-common # Installer INSTALL = /usr/bin/install # Make program MAKE = make