mirror of
https://github.com/rn10950/RetroZilla.git
synced 2024-11-11 02:10:17 +01:00
35 lines
509 B
Makefile
35 lines
509 B
Makefile
# vim:set ts=8 sw=8 noet:
|
|
|
|
DEPTH = ../../../../..
|
|
topsrcdir = @top_srcdir@
|
|
srcdir = @srcdir@
|
|
VPATH = @srcdir@
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
MODULE = dconnect
|
|
MOZILLA_INTERNAL_API = 1
|
|
|
|
REQUIRES = ipcd \
|
|
nspr \
|
|
string \
|
|
xpcom \
|
|
$(NULL)
|
|
|
|
CPPSRCS = \
|
|
TestDConnect.cpp \
|
|
$(NULL)
|
|
|
|
SIMPLE_PROGRAMS = $(CPPSRCS:.cpp=$(BIN_SUFFIX))
|
|
|
|
include $(topsrcdir)/config/config.mk
|
|
|
|
LIBS = \
|
|
$(EXTRA_DSO_LIBS) \
|
|
$(XPCOM_LIBS) \
|
|
$(NSPR_LIBS) \
|
|
$(NULL)
|
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|