mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
31 lines
671 B
Plaintext
31 lines
671 B
Plaintext
#
|
|
# Microsoft Visual C makefile for WAI sample
|
|
|
|
|
|
INCLUDES = -I..\..\..\include -I..\..\include -IC:\Netscape\Suitespot\include -IC:\Netscape\Suitespot\wai\include
|
|
NSLIB = ..\..\..\lib
|
|
WAILIB= c:\netscape\suitespot\wai\lib
|
|
LIBS = $(WAILIB)\ONEiiop10.lib WSOCK32.lib
|
|
OPTIMIZER=-Zi -Od -DDEBUG
|
|
CPPFLAGS=$(INCLUDES) $(OPTIMIZER) -DXP_WIN32 -DWIN32 /MD
|
|
|
|
|
|
OBJS = opendir.o \
|
|
rdf.o \
|
|
rdfparse.o \
|
|
remstore.o \
|
|
hash.o \
|
|
genopendir.o \
|
|
query.o \
|
|
gs.o \
|
|
$(NULL)
|
|
|
|
|
|
all: opendir
|
|
|
|
opendir: opendir.c rdf.c rdfparse.c remstore.c hash.c genopendir.c gs.c query.c
|
|
$(CC) $(CPPFLAGS) $(LIBS) $? -o $@
|
|
|
|
clean:
|
|
del *.obj
|