summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorSimon Tatham <anakin@pobox.com>2002-08-05 10:31:35 +0000
committerSimon Tatham <anakin@pobox.com>2002-08-05 10:31:35 +0000
commitc478f3d9469c09773097eba89342c311ee70a319 (patch)
treef7b1e1d1ac577b5571bf14fe70af1dced325dccc /Makefile
parent6758ed90d7c0015752894202138ecbcef35b80a0 (diff)
downloadhalibut-c478f3d9469c09773097eba89342c311ee70a319.zip
halibut-c478f3d9469c09773097eba89342c311ee70a319.tar.gz
halibut-c478f3d9469c09773097eba89342c311ee70a319.tar.bz2
halibut-c478f3d9469c09773097eba89342c311ee70a319.tar.xz
Rename Buttress to Halibut. I _think_ I've caught everything in this pass.
[originally from svn r1800]
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 17cec01..b82ba23 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-# Buttress master makefile
+# Halibut master makefile
# Requires a compiler with -MD support, currently
@@ -59,8 +59,8 @@ MODULES += winhelp
OBJECTS := $(addsuffix .o,$(MODULES))
DEPS := $(addsuffix .d,$(MODULES))
-buttress: $(OBJECTS)
- $(CC) $(LFLAGS) -o buttress $(OBJECTS) $(LIBS)
+halibut: $(OBJECTS)
+ $(CC) $(LFLAGS) -o halibut $(OBJECTS) $(LIBS)
%.o: $(SRC)%.c
$(CC) $(CFLAGS) -MD -c $<
@@ -72,7 +72,7 @@ spotless:: clean
rm -f *.d
clean::
- rm -f *.o buttress core
+ rm -f *.o halibut core
FORCE: # phony target to force version.o to be rebuilt every time