X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=src%2Fgame_bd%2FMakefile;h=9683f5ea7a1936d9b5fceb71f2bae0a654f5107b;hb=cd54239dd82cb8e6de93c26c534a0b6f1e9956cb;hp=74852038bb74fdf760bcb71512ce6450cba5c1e6;hpb=cf2fb7f9f4ca20097ab96b40ddf0bee0a0f462e5;p=rocksndiamonds.git diff --git a/src/game_bd/Makefile b/src/game_bd/Makefile index 74852038..9683f5ea 100644 --- a/src/game_bd/Makefile +++ b/src/game_bd/Makefile @@ -1,7 +1,7 @@ # ============================================================================= # Rocks'n'Diamonds - McDuffin Strikes Back! # ----------------------------------------------------------------------------- -# (c) 1995-2023 by Artsoft Entertainment +# (c) 1995-2024 by Artsoft Entertainment # Holger Schemel # info@artsoft.org # https://www.artsoft.org/ @@ -16,9 +16,29 @@ # configuration # ----------------------------------------------------------------------------- -SRCS = main_bd.c +SRCS = main_bd.c \ + bd_cave.c \ + bd_cavedb.c \ + bd_caveengine.c \ + bd_caveobject.c \ + bd_bdcff.c \ + bd_caveset.c \ + bd_c64import.c \ + bd_gameplay.c \ + bd_graphics.c \ + bd_sound.c -OBJS = main_bd.o +OBJS = main_bd.o \ + bd_cave.o \ + bd_cavedb.o \ + bd_caveengine.o \ + bd_caveobject.o \ + bd_bdcff.o \ + bd_caveset.o \ + bd_c64import.o \ + bd_gameplay.o \ + bd_graphics.o \ + bd_sound.o GAME_BD = game_bd.a @@ -48,6 +68,9 @@ clean: depend: for i in $(SRCS); do $(CPP) $(CFLAGS) -M $$i; done > .depend +depend-clean: + $(RM) .depend + ifeq (.depend,$(wildcard .depend)) include .depend endif