mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
36 lines
511 B
Makefile
36 lines
511 B
Makefile
DEPTH = ../..
|
|
topsrcdir = @top_srcdir@
|
|
srcdir = @srcdir@
|
|
VPATH = @srcdir@
|
|
|
|
LIBRARY_NAME = tstysupt
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
MODULE = testy
|
|
|
|
|
|
TESTCPPSRCS = Testy.cpp
|
|
|
|
CPPSRCS = \
|
|
TestySupport.cpp \
|
|
$(TESTCPPSRCS) \
|
|
$(NULL)
|
|
|
|
SIMPLE_PROGRAMS = $(TESTCPPSRCS:.cpp=$(BIN_SUFFIX))
|
|
|
|
EXTRA_DSO_LDOPTS = \
|
|
$(NSPR_LIBS) \
|
|
$(NULL)
|
|
|
|
LIBS = \
|
|
-ltstysupt \
|
|
$(NSPR_LIBS) \
|
|
$(NULL)
|
|
|
|
DIRS = sample
|
|
|
|
include $(topsrcdir)/config/config.mk
|
|
|
|
include $(topsrcdir)/config/rules.mk
|