rnd-19981130-1
[rocksndiamonds.git] / src / Makefile
index a3a5b396b7630fb745abcf774112515fd8ed8de2..f57322d5d7bb1f1cafb5c6e4fe4dd8a72198f8ed 100644 (file)
@@ -44,7 +44,7 @@ SCORE_ENTRIES = MANY_PER_NAME
 # you shouldn't need to change anything below                                 #
 #-----------------------------------------------------------------------------#
 
-PROGNAME = rocksndiamonds
+PROGNAME = ../rocksndiamonds
 
 RM = rm -f
 CPP = $(CC) -E
@@ -92,7 +92,6 @@ SRCS =        main.c          \
        joystick.c      \
        cartoons.c      \
        random.c        \
-       gif.c           \
        pcx.c           \
        image.c         \
        network.c       \
@@ -113,7 +112,6 @@ OBJS =      main.o          \
        joystick.o      \
        cartoons.o      \
        random.o        \
-       gif.o           \
        pcx.o           \
        image.o         \
        network.o       \
@@ -128,10 +126,8 @@ $(PROGNAME):       $(OBJS)
        $(CC) $(CFLAGS) -c $*.c
 
 clean:
-       $(RM) $(PROGNAME) $(SERVNAME) $(OBJS)
-
-backup:
-       ./make_backup.sh
+       $(RM) $(OBJS)
+       $(RM) $(PROGNAME)
 
 depend:
        for i in $(SRCS); do $(CPP) $(CFLAGS) -M $$i; done > .depend