From 512fa4d69efa3f71c61a581c137ee6da2a9bf2f9 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Mon, 31 Dec 2007 12:29:10 +0000 Subject: [PATCH] rename project to view; do not clean best --- Makefile | 9 ++++++--- project.c => view.c | 0 2 files changed, 6 insertions(+), 3 deletions(-) rename project.c => view.c (100%) diff --git a/Makefile b/Makefile index cd1aa6c..39d43e3 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ -TARGETS= minimise primer initial project +TARGETS= minimise primer initial view CWARNS= -Wall -Wwrite-strings -Wpointer-arith -Werror @@ -17,7 +17,7 @@ minimise: energy.o bgl.o common.o mgraph.o primer: primer.o common.o $(CC) $(CFLAGS) -o $@ $^ $(LIBGSL) -project: project.o common.o mgraph.o +view: view.o common.o mgraph.o $(CC) $(CFLAGS) -o $@ $^ $(LIBGSL) -L/usr/X11R6/lib -lX11 initial: generator primer sgtatham/z.typescript @@ -25,7 +25,10 @@ initial: generator primer sgtatham/z.typescript clean: rm -f *.o $(TARGETS) *.new *.tmp - rm -f best initial + rm -f initial rm -f *.d +realclean: clean + rm -f best + -include *.d diff --git a/project.c b/view.c similarity index 100% rename from project.c rename to view.c -- 2.30.2