From: Gwyn Ciesla Date: Tue, 22 Oct 2019 21:43:01 +0000 (-0500) Subject: Use phony. X-Git-Tag: 1.14~7 X-Git-Url: http://git.pulsar-zone.net/?a=commitdiff_plain;h=c136714abfa39918e12e1a3c84afc0ed38058917;p=curblaster.git Use phony. --- diff --git a/Makefile b/Makefile index f3965a2..1a5cb7d 100644 --- a/Makefile +++ b/Makefile @@ -3,6 +3,7 @@ CC = g++ CXX = $(CC) $(CFLAGS) INST = /usr/local/bin +.PHONY: test check clean install uninstall remove main 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 g++ $(CFLAGS) -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 -lSDL2 -lSDL2_mixer