author | ecalot
<ecalot> 2005-02-05 05:48:18 UTC |
committer | ecalot
<ecalot> 2005-02-05 05:48:18 UTC |
parent | 01025a27805b37ed389d4b6a13d51e772096ee3f |
FP/src/makefile.lcc | +16 | -1 |
diff --git a/FP/src/makefile.lcc b/FP/src/makefile.lcc index ccc1798..268d8d5 100644 --- a/FP/src/makefile.lcc +++ b/FP/src/makefile.lcc @@ -38,7 +38,7 @@ LINKERRELEASE = -s #Binary code files OBJFILES = main.obj kernel.obj resources.obj dat.obj disk.obj compress.obj \ output.obj maps.obj config.obj room.obj titles.obj \ - input.obj kid.obj states.obj tiles.obj\ + input.obj kid.obj states.obj tiles.obj walls.obj anims.obj object.obj\ $(SRC2) EXEFILE = bin\freeprince.exe @@ -139,6 +139,21 @@ config.obj: res\config.c include\resources.h include\res_conf.h $(INFO) Compiling resource configuration module... $(CC) $(OPTIONS) -c res\config.c +walls.obj: res\walls.c include\walls.h include\walls_conf.h + $(INFO) Compiling wall algorithm module... + $(CC) $(OPTIONS) -c res\walls.c + +anims.obj: res\anims.c include\anims.h include\anims_conf.h + $(INFO) Compiling animation loader module... + $(CC) $(OPTIONS) -c res\anims.c + +object.obj: ker\object.c include\object.h include\resources.h include\res_conf.h\ + include\states.h include\res_conf.h\ + include\types.h include\tiles.h include\tiles_conf.h include\output.h\ + include\kid.h + $(INFO) Compiling kernel kid object support... + $(CC) $(OPTIONS) -c ker\object.c + getopt.obj: ports\getopt.c $(INFO) Porting the Unix-like getopt function (first part)... $(CC) $(OPTIONS) -c ports\getopt.c