summary refs log tree commit diff stats
path: root/src/common/makefile.mak
blob: edd2b90547e575e6f343598b1b763f1e8f0c1514 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
include "..\makeinc.mak"

all: $(COMMON_OBJECTS) xchatcommon.lib

xchatcommon.lib: $(COMMON_OBJECTS)
	lib /nologo /out:xchatcommon.lib $(COMMON_OBJECTS)

.c.obj:
	$(CC) $(CFLAGS) $(GLIB) $<

clean:
	@del *.obj
	@del xchatcommon.lib