X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=src%2Flibgame%2FMakefile;h=140e9fd9a5bb6aebd65b494ce3363042b361ecc4;hb=a7c06161253796a30a0237a7f5a044f459c8cf35;hp=2eb6dda4bc8d7bdb732a1e01a12037de22b5ca4c;hpb=6945f3749927053ee70b47133b2998557a452f75;p=rocksndiamonds.git diff --git a/src/libgame/Makefile b/src/libgame/Makefile index 2eb6dda4..140e9fd9 100644 --- a/src/libgame/Makefile +++ b/src/libgame/Makefile @@ -1,13 +1,19 @@ -#=============================================================================# -# Makefile for Artsoft Retro-Game Library # -# (c) 1994-2002 Holger Schemel, info@artsoft.org # -#=============================================================================# +# ============================================================================= +# Rocks'n'Diamonds Makefile (libgame) +# ----------------------------------------------------------------------------- +# (c) 1995-2006 Holger Schemel +# ============================================================================= + +# ----------------------------------------------------------------------------- +# configuration +# ----------------------------------------------------------------------------- SRCS = system.c \ gadgets.c \ text.c \ sound.c \ joystick.c \ + snapshot.c \ toons.c \ pcx.c \ image.c \ @@ -23,6 +29,7 @@ OBJS = system.o \ gadgets.o \ text.o \ sound.o \ + snapshot.o \ joystick.o \ toons.o \ pcx.o \ @@ -38,6 +45,10 @@ OBJS = system.o \ LIBGAME = libgame.a +# ----------------------------------------------------------------------------- +# build targets +# ----------------------------------------------------------------------------- + all: $(LIBGAME) $(LIBGAME): $(OBJS) @@ -52,9 +63,9 @@ clean: $(RM) $(LIBGAME) -#-----------------------------------------------------------------------------# -# development only stuff # -#-----------------------------------------------------------------------------# +# ----------------------------------------------------------------------------- +# development only +# ----------------------------------------------------------------------------- depend: for i in $(SRCS); do $(CPP) $(CFLAGS) -M $$i; done > .depend