#  Makefile for CreateNetImg, Copyright 1998 (c) by Claudio Jeker,
#   Swiss Federal Institute of Technology,
#   Computer Engineering and Networks Laboratory.
#
#   TOPSY -- A Teachable Operating System.
#            Implementation of a tiny and simple
#            micro kernel for teaching purposes.
#
#   For further information, please visit http://www.tik.ee.ethz.ch/~topsy
#
#   This software is provided under the terms of the GNU General Public Licence.
#   A full copy of the GNU GPL is provided in the file COPYING found in the 
#   development root of Topsy.
#
#       
#       File:                  $Source: /home/ruf/cvs_Topsy/cvs/Topsy/Boot/ia32/Tools/CreateNetImg/Makefile,v $
#       Author(s):             
#       Affiliation:           ETH Zuerich, TIK
#       Version:               $Revision: 2911 $
#       Creation Date:         
#       Last Date of Change:   $Date: 2007-03-07 14:27:12 +0100 (Mit, 07 Mär 2007) $      by: $Author: rnatau $
#       
#       
#       $Log: Makefile,v $
#       Revision 1.2  2000/12/13 10:23:22  cjeker
#       *** empty log message ***
#
#       Revision 1.1  2000/11/30 18:14:58  cjeker
#       added make ia32-net and a lot of other small fixes
#

###############################################################################
# machine dependent subdirectories for each module and folder for object files
ARCH=ia32
PLATFORM=linux

# make procedures for the outside
all: header.bin

CreateImage: CreateImage.c
	gcc -o CreateImage CreateImage.c

header.bin: CreateImage
	./CreateImage

clean:
	rm -f header.bin CreateImage

