X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=src%2Flibgame%2FMakefile;h=4d5b28c6b3eae4baadc7ddfe80b82ab7b7e874da;hb=a2c9a458aaa4ac568f07ecd25b19fbca3f766e6b;hp=f9f306b6345144cd1b914e50c347a70348a99a51;hpb=c9433eab5c4317ed4f89164b386a7d33562e29be;p=rocksndiamonds.git diff --git a/src/libgame/Makefile b/src/libgame/Makefile index f9f306b6..4d5b28c6 100644 --- a/src/libgame/Makefile +++ b/src/libgame/Makefile @@ -1,7 +1,12 @@ -#=============================================================================# -# Makefile for Artsoft Retro-Game Library # -# (c) 1994-2002 Holger Schemel, info@artsoft.org # -#=============================================================================# +# ============================================================================= +# Rocks'n'Diamonds Makefile (libgame) +# ----------------------------------------------------------------------------- +# (c) 1995-2003 Holger Schemel +# ============================================================================= + +# ----------------------------------------------------------------------------- +# configuration +# ----------------------------------------------------------------------------- SRCS = system.c \ gadgets.c \ @@ -12,6 +17,7 @@ SRCS = system.c \ pcx.c \ image.c \ random.c \ + hash.c \ setup.c \ misc.c \ msdos.c \ @@ -27,6 +33,7 @@ OBJS = system.o \ pcx.o \ image.o \ random.o \ + hash.o \ setup.o \ misc.o \ msdos.o \ @@ -36,6 +43,10 @@ OBJS = system.o \ LIBGAME = libgame.a +# ----------------------------------------------------------------------------- +# build targets +# ----------------------------------------------------------------------------- + all: $(LIBGAME) $(LIBGAME): $(OBJS) @@ -50,9 +61,9 @@ clean: $(RM) $(LIBGAME) -#-----------------------------------------------------------------------------# -# development only stuff # -#-----------------------------------------------------------------------------# +# ----------------------------------------------------------------------------- +# development only +# ----------------------------------------------------------------------------- depend: for i in $(SRCS); do $(CPP) $(CFLAGS) -M $$i; done > .depend