X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=src%2Flibgame%2FMakefile;h=f146054036f5c0a5ce321304a94715660ea6043a;hb=5abed77f4575375756d228a2afc749589a25c87a;hp=b756b27d4f830429fc44b5b1498ba889f1d454be;hpb=e582c697ddb8c9cd9d5d345beaf83c1916b849fa;p=rocksndiamonds.git diff --git a/src/libgame/Makefile b/src/libgame/Makefile index b756b27d..f1460540 100644 --- a/src/libgame/Makefile +++ b/src/libgame/Makefile @@ -1,35 +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 \ - pcx.c \ + joystick.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 \ - pcx.o \ + snapshot.o \ + joystick.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) @@ -44,9 +57,9 @@ clean: $(RM) $(LIBGAME) -#-----------------------------------------------------------------------------# -# development only stuff # -#-----------------------------------------------------------------------------# +# ----------------------------------------------------------------------------- +# development only +# ----------------------------------------------------------------------------- depend: for i in $(SRCS); do $(CPP) $(CFLAGS) -M $$i; done > .depend