X-Git-Url: https://jxself.org/git/?p=super-star-trek.git;a=blobdiff_plain;f=makefile;h=59efa674f7b46fc22e82dee0689d894ce571d04a;hp=3e351422990f7e31d8fe731a2292f55fae855e9c;hb=f14a35629e403d9b2cd4e406e80666671fd2a594;hpb=62ecc7f7980b836681dc37f6ac0e03f976916050 diff --git a/makefile b/makefile index 3e35142..59efa67 100644 --- a/makefile +++ b/makefile @@ -7,9 +7,11 @@ OFILES= sst.o finish.o reports.o setup.o linux.o moving.o battle.o events.o HFILES= sst.h -sstos2.exe: $(OFILES) +sst: $(OFILES) gcc -o sst $(OFILES) -lm - $(OFILES): $(HFILES) +clean: + rm -f *.o sst +