X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;ds=sidebyside;f=src%2Flibgame%2FMakefile;h=f146054036f5c0a5ce321304a94715660ea6043a;hb=97f03ad86e7458be79933d91363a38c4d2e35deb;hp=07159642b635962d1368fe008de1400c52f9501d;hpb=41e8d55b767c898f20c29a1b0b8d2ef8840be2f5;p=rocksndiamonds.git diff --git a/src/libgame/Makefile b/src/libgame/Makefile index 07159642..f1460540 100644 --- a/src/libgame/Makefile +++ b/src/libgame/Makefile @@ -1,39 +1,48 @@ -#=============================================================================# -# Makefile for Artsoft Retro-Game Library # -# (c) 1994-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 \ - pcx.c \ + snapshot.c \ + toons.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 \ - pcx.o \ + toons.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) @@ -48,9 +57,9 @@ clean: $(RM) $(LIBGAME) -#-----------------------------------------------------------------------------# -# development only stuff # -#-----------------------------------------------------------------------------# +# ----------------------------------------------------------------------------- +# development only +# ----------------------------------------------------------------------------- depend: for i in $(SRCS); do $(CPP) $(CFLAGS) -M $$i; done > .depend