X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=src%2Flibgame%2FMakefile;h=623535279962f9d31733d00c4b35d12ef69efe78;hb=959794cfda1f83edc51512211ae5a9f6b1e0b179;hp=c9e2de4ee76ac515c237b29669f79678a319b176;hpb=3d07b68a314ce189f207e42d95f786979662410d;p=rocksndiamonds.git diff --git a/src/libgame/Makefile b/src/libgame/Makefile index c9e2de4e..62353527 100644 --- a/src/libgame/Makefile +++ b/src/libgame/Makefile @@ -1,17 +1,26 @@ -#=============================================================================# -# Makefile for Rocks'n'Diamonds # -# (c) 1995-2000 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 \ random.c \ + hash.c \ + setup.c \ misc.c \ - msdos.c \ x11.c \ sdl.c @@ -19,17 +28,25 @@ 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) @@ -44,9 +61,9 @@ clean: $(RM) $(LIBGAME) -#-----------------------------------------------------------------------------# -# development only stuff # -#-----------------------------------------------------------------------------# +# ----------------------------------------------------------------------------- +# development only +# ----------------------------------------------------------------------------- depend: for i in $(SRCS); do $(CPP) $(CFLAGS) -M $$i; done > .depend