*** empty log message ***

This commit is contained in:
2007-02-11 09:18:32 +00:00
parent 8a5f0efc20
commit a01eb7445c
6 changed files with 16 additions and 30 deletions

View File

@ -0,0 +1,17 @@
CC = cl
CFLAGS = /nologo /MT /GX /W3 /GR- /D_WIN32_WINNT=0x0400 -I..\..\..
LDFLAGS = /libpath:..\..\lsp
LIBS = aselsp.lib user32.lib
all: lsp
lsp: lsp.obj
link /nologo /out:lsp.exe $(LDFLAGS) $(LIBS) lsp.obj
clean:
del $(OBJS) *.obj lsp.exe
.SUFFIXES: .c .obj
.c.obj:
$(CC) /c $(CFLAGS) $<