From: Gwyn Ciesla Date: Mon, 22 Mar 2010 21:10:18 +0000 (-0500) Subject: Removed extraneous backup file. X-Git-Tag: 1.05~6 X-Git-Url: http://git.pulsar-zone.net/?a=commitdiff_plain;h=9940923c4f76ab9975b58fd6da269f8252664ef4;p=curblaster.git Removed extraneous backup file. --- diff --git a/Makefile~ b/Makefile~ deleted file mode 100644 index 331b934..0000000 --- a/Makefile~ +++ /dev/null @@ -1,50 +0,0 @@ -CXX = g++ $(CFLAGS) -INST = /usr/local/bin - - -main: main.o check_collision.o age_bullet.o gravitize.o radar_plot.o object_out.o motion.o init.o draw.o powerup.o play_sound_effect.o mishaps.o enemy_shoot.o - $(CXX) -o curblaster main.o check_collision.o age_bullet.o gravitize.o radar_plot.o object_out.o motion.o init.o draw.o powerup.o play_sound_effect.o mishaps.o enemy_shoot.o -lncurses -lSDL -lSDL_mixer -main.o: main.cpp - $(CXX) -c main.cpp -check_collision.o: check_collision.cpp check_collision.h - $(CXX) -c check_collision.cpp -age_bullet.o: age_bullet.cpp age_bullet.h - $(CXX) -c age_bullet.cpp -gravitize.o: gravitize.cpp gravitize.h - $(CXX) -c gravitize.cpp -radar_plot.o: radar_plot.cpp radar_plot.h - $(CXX) -c radar_plot.cpp -object_out.o: object_out.cpp object_out.h - $(CXX) -c object_out.cpp -motion.o: motion.cpp motion.h - $(CXX) -c motion.cpp -init.o: init.cpp init.h - $(CXX) -c init.cpp -draw.o: draw.cpp draw.h - $(CXX) -c draw.cpp -powerup.o: powerup.cpp powerup.h - $(CXX) -c powerup.cpp -play_sound_effect.o: play_sound_effect.cpp play_sound_effect.h - $(CXX) -c play_sound_effect.cpp -mishaps.o: mishaps.cpp mishaps.h - $(CXX) -c mishaps.cpp -enemy_shoot.o: enemy_shoot.cpp enemy_shoot.h - $(CXX) -c enemy_shoot.cpp -install: - cp curblaster $(INST) -remove: - rm $(INST)/curblaster -uninstall: remove - -clean: - rm *.o - rm curblaster - - - - - - - - -