*** 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

@ -1,16 +1,20 @@
SRCS = lsp.c
OUTS = $(SRCS:.c=.x)
OBJS = $(SRCS:.c=.o)
CC = @CC@
CFLAGS = @CFLAGS@ -I@abs_top_builddir@/..
LDFLAGS = @LDFLAGS@ -L@abs_top_builddir@/lsp
LIBS = @LIBS@ -laselsp
CFLAGS = @CFLAGS@ -I@abs_top_builddir@/..
LDFLAGS = @LDFLAGS@ -L@abs_top_builddir@/lsp
LIBS = @LIBS@ -laselsp -lm
all: $(OUTS)
all: aselsp
aselsp: $(OBJS)
$(CC) -o $@ lsp.o $(LDFLAGS) $(LIBS)
clean:
rm -rf $(OUTS) *.o
rm -rf *.o aselsp
.SUFFIXES: .c .o
.c.o:
$(CC) -c $(CFLAGS) $<
.SUFFIXES: .c .x
.c.x:
$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $< $(LIBS)

View File

@ -1,7 +1,7 @@
CC = cl
CFLAGS = /nologo /MT /GX /W3 /GR- /D_WIN32_WINNT=0x0400 -I..\..\.. -I$(XPKIT)
LDFLAGS = /libpath:..\..\lsp /libpath:$(XPKIT)\xp\bas
LIBS = aselsp.lib xpbas.lib user32.lib
CFLAGS = /nologo /MT /GX /W3 /GR- /D_WIN32_WINNT=0x0400 -I..\..\..
LDFLAGS = /libpath:..\..\lsp
LIBS = aselsp.lib user32.lib
all: lsp