| [1101] | 1 | #  _____     ___ ____ 
 | 
|---|
 | 2 | #   ____|   |    ____|      PS2 Open Source Project
 | 
|---|
 | 3 | #  |     ___|   |____       
 | 
|---|
 | 4 | #  
 | 
|---|
 | 5 | #--------------------------------------------------------------------------
 | 
|---|
 | 6 | #
 | 
|---|
 | 7 | #    Copyright (C) 2008 - Neme & jimmikaelkael (www.psx-scene.com) 
 | 
|---|
 | 8 | #
 | 
|---|
 | 9 | #    This program is free software; you can redistribute it and/or modify
 | 
|---|
 | 10 | #    it under the terms of the Free McBoot License.
 | 
|---|
 | 11 | #    
 | 
|---|
 | 12 | #        This program and any related documentation is provided "as is"
 | 
|---|
 | 13 | #        WITHOUT ANY WARRANTIES, either express or implied, including, but not
 | 
|---|
 | 14 | #        limited to, implied warranties of fitness for a particular purpose. The
 | 
|---|
 | 15 | #        entire risk arising out of use or performance of the software remains
 | 
|---|
 | 16 | #        with you.
 | 
|---|
 | 17 | #    In no event shall the author be liable for any damages whatsoever
 | 
|---|
 | 18 | #        (including, without limitation, damages to your hardware or equipment,
 | 
|---|
 | 19 | #        environmental damage, loss of health, or any kind of pecuniary loss)
 | 
|---|
 | 20 | #        arising out of the use of or inability to use this software or
 | 
|---|
 | 21 | #        documentation, even if the author has been advised of the possibility
 | 
|---|
 | 22 | #        of such damages.
 | 
|---|
 | 23 | #
 | 
|---|
 | 24 | #    You should have received a copy of the Free McBoot License along with
 | 
|---|
 | 25 | #    this program; if not, please report at psx-scene :
 | 
|---|
 | 26 | #    http://psx-scene.com/forums/freevast/
 | 
|---|
 | 27 | #
 | 
|---|
 | 28 | #--------------------------------------------------------------------------     
 | 
|---|
 | 29 | #
 | 
|---|
 | 30 | # MakeFile
 | 
|---|
 | 31 | #
 | 
|---|
 | 32 | # ------------------------------------------------------------------------
 | 
|---|
 | 33 | 
 | 
|---|
 | 34 | IOP_BIN  = chkesr.irx
 | 
|---|
 | 35 | IOP_OBJS = chkesr.o imports.o
 | 
|---|
 | 36 | 
 | 
|---|
 | 37 | IOP_CFLAGS  += -Wall -fno-builtin
 | 
|---|
 | 38 | IOP_LDFLAGS += -s
 | 
|---|
 | 39 | IOP_INCS += -I$(PS2SDK)/iop/include -I$(PS2SDK)/common/include
 | 
|---|
 | 40 | 
 | 
|---|
 | 41 | all: $(IOP_BIN)
 | 
|---|
 | 42 | 
 | 
|---|
 | 43 | clean:
 | 
|---|
 | 44 |         -rm -f *.o *.bak *.irx
 | 
|---|
 | 45 |         
 | 
|---|
 | 46 | include $(PS2SDK)/Defs.make
 | 
|---|
 | 47 | include Rules.make
 | 
|---|