X-Git-Url: https://git.artsoft.org/?p=rocksndiamonds.git;a=blobdiff_plain;f=src%2Flibgame%2FMakefile;h=4693c226a9529311c092778ba9516382afecabf3;hp=a79475a4c0432408a856e0e75da71699961ef9f4;hb=6746a99c1d7348748c06d457f8496b4253bb7c84;hpb=1446af0fb66276d75bd2ce82d368292283e555aa diff --git a/src/libgame/Makefile b/src/libgame/Makefile index a79475a4..4693c226 100644 --- a/src/libgame/Makefile +++ b/src/libgame/Makefile @@ -1,41 +1,51 @@ -#=============================================================================# -# Makefile for Artsoft Retro-Game Library # -# (c) 1994-2000 Holger Schemel, info@artsoft.org # -#=============================================================================# +# ============================================================================= +# Rocks'n'Diamonds - McDuffin Strikes Back! +# ----------------------------------------------------------------------------- +# (c) 1995-2014 by Artsoft Entertainment +# Holger Schemel +# info@artsoft.org +# http://www.artsoft.org/ +# ----------------------------------------------------------------------------- +# src/libgame/Makefile +# ============================================================================= + +# ----------------------------------------------------------------------------- +# configuration +# ----------------------------------------------------------------------------- SRCS = system.c \ gadgets.c \ text.c \ sound.c \ joystick.c \ - toons.c \ - pcx.c \ + snapshot.c \ image.c \ random.c \ + hash.c \ setup.c \ misc.c \ - msdos.c \ - x11.c \ sdl.c OBJS = system.o \ gadgets.o \ text.o \ sound.o \ + snapshot.o \ joystick.o \ - toons.o \ - pcx.o \ image.o \ random.o \ + hash.o \ setup.o \ misc.o \ - msdos.o \ - x11.o \ sdl.o LIBGAME = libgame.a +# ----------------------------------------------------------------------------- +# build targets +# ----------------------------------------------------------------------------- + all: $(LIBGAME) $(LIBGAME): $(OBJS) @@ -50,9 +60,9 @@ clean: $(RM) $(LIBGAME) -#-----------------------------------------------------------------------------# -# development only stuff # -#-----------------------------------------------------------------------------# +# ----------------------------------------------------------------------------- +# development only +# ----------------------------------------------------------------------------- depend: for i in $(SRCS); do $(CPP) $(CFLAGS) -M $$i; done > .depend