mirror of
https://github.com/moparisthebest/hexchat
synced 2024-11-17 06:45:10 -05:00
14 lines
232 B
Makefile
14 lines
232 B
Makefile
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
|