summary refs log tree commit diff stats
path: root/src/common/makefile.mak
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/makefile.mak')
-rw-r--r--src/common/makefile.mak13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/common/makefile.mak b/src/common/makefile.mak
new file mode 100644
index 00000000..ee046895
--- /dev/null
+++ b/src/common/makefile.mak
@@ -0,0 +1,13 @@
+include "..\makeinc.mak"
+
+all: $(COMMON_OBJECTS) xchatcommon.lib
+
+xchatcommon.lib: $(COMMON_OBJECTS)
+	lib -out:xchatcommon.lib $(COMMON_OBJECTS)
+
+.c.obj:
+	$(CC) $(CFLAGS) $(GLIB) $<
+
+clean:
+	del *.obj
+	del xchatcommon.lib