source: ps2launchargs/source/uLaunchELF/chkesr/Makefile

Last change on this file was 1101, checked in by iritscen, 7 years ago

Added following to ps2launchargs:\n-Source code.\n-DLL needed to run ps2client.\n-Instructions for building uLaunchELF.

  • Property svn:executable set to *
File size: 1.6 KB
Line 
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
34IOP_BIN = chkesr.irx
35IOP_OBJS = chkesr.o imports.o
36
37IOP_CFLAGS += -Wall -fno-builtin
38IOP_LDFLAGS += -s
39IOP_INCS += -I$(PS2SDK)/iop/include -I$(PS2SDK)/common/include
40
41all: $(IOP_BIN)
42
43clean:
44 -rm -f *.o *.bak *.irx
45
46include $(PS2SDK)/Defs.make
47include Rules.make
Note: See TracBrowser for help on using the repository browser.