aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorTest_User <hax@andrewyu.org>2024-06-16 08:13:02 -0400
committerTest_User <hax@andrewyu.org>2024-06-16 08:13:02 -0400
commita05943a31b80692a5d1d11f3b7c795fb0ead4fe6 (patch)
treee081b202ce86e13b329c7dd8bab11a86debdbdd0 /Makefile
parent2ef771f912d7431cdda51d42c5f89dbdf6b4558f (diff)
downloadhaxircd-a05943a31b80692a5d1d11f3b7c795fb0ead4fe6.tar.gz
haxircd-a05943a31b80692a5d1d11f3b7c795fb0ead4fe6.zip
haxserv -> HaxIRCd
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile12
1 files changed, 6 insertions, 6 deletions
diff --git a/Makefile b/Makefile
index 18513a7..a290510 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-# Makefile for HaxServ
+# Makefile for HaxIRCd
#
# Written by: Test_User <hax@andrewyu.org>
#
@@ -160,7 +160,7 @@ USE_GNUTLS = 0
USE_SERVER = 0
OFILES = config.o general_network.o haxstring_utils.o real_main.o table.o
-SOFILES =
+SOFILES = HaxIRCd.so
ifeq ($(PLAINTEXT_CLIENT),1)
CFLAGS += -DUSE_PLAINTEXT_CLIENT
@@ -280,12 +280,12 @@ DEPS = $(shell $(CC) $(CFLAGS) -M -MT $(1).$(2) $(1).c | sed -z 's/\\\n //g') .m
.PHONY: all clean
-all: haxserv $(SOFILES) haxserv haxserv.so
+all: HaxIRCd $(SOFILES)
-haxserv: main.c
+HaxIRCd: main.c
$(CC) main.c -o haxserv
-haxserv.so: $(OFILES) .makeopts Makefile
+HaxIRCd.so: $(OFILES) .makeopts Makefile
$(CC) $(OFILES) -shared -o $@ $(LDFLAGS)
%.o: %.c
@@ -349,4 +349,4 @@ $(call DEPS,psuedoclients/haxserv,so)
endif
clean:
- $(RM) -r haxserv *.o *.so protocols/*.o protocols/*.so psuedoclients/*.o psuedoclients/*.so
+ $(RM) HaxIRCd *.o *.so protocols/*.o protocols/*.so psuedoclients/*.o psuedoclients/*.so