X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=src%2Fgame_em%2FMakefile;h=d106dd03070bb8d6c36eda606162bd5763985fb8;hb=edaa850fd2d2cae7ec31961fae3d56487e710c71;hp=c8080a514f1328192af6172c0afd1a67ae9c0d76;hpb=ffc0baabb286240461536baa2573bead433104ff;p=rocksndiamonds.git diff --git a/src/game_em/Makefile b/src/game_em/Makefile index c8080a51..d106dd03 100644 --- a/src/game_em/Makefile +++ b/src/game_em/Makefile @@ -4,7 +4,7 @@ # (c) 1995-2014 by Artsoft Entertainment # Holger Schemel # info@artsoft.org -# http://www.artsoft.org/ +# https://www.artsoft.org/ # ----------------------------------------------------------------------------- # The native Emerald Mine game engine is based on: # Emerald Mine for X11 (c) 2000,2001 David Tritscher @@ -20,7 +20,7 @@ SRCS = cave.c \ convert.c \ graphics.c \ init.c \ - input.c \ + game.c \ logic.c \ reademc.c @@ -28,7 +28,7 @@ OBJS = cave.o \ convert.o \ graphics.o \ init.o \ - input.o \ + game.o \ logic.o \ reademc.o @@ -60,6 +60,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