зеркало из https://github.com/mozilla/gecko-dev.git
33 строки
580 B
Makefile
33 строки
580 B
Makefile
DEPTH = ../../..
|
|
topsrcdir = @top_srcdir@
|
|
srcdir = @srcdir@
|
|
VPATH = @srcdir@
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
DIRS = tools
|
|
|
|
MODULE = appcomps
|
|
LIBRARY_NAME = timebomb_s
|
|
XPIDL_MODULE = timebomb
|
|
REQUIRES = xpcom \
|
|
string \
|
|
pref \
|
|
appshell \
|
|
necko \
|
|
webbrwsr \
|
|
$(NULL)
|
|
|
|
XPIDLSRCS = nsITimeBomb.idl
|
|
|
|
CPPSRCS = nsTimeBomb.cpp
|
|
|
|
EXPORTS = nsTimeBomb.h
|
|
|
|
# we don't want the shared lib, but we want to force the creation of a
|
|
# static lib.
|
|
FORCE_STATIC_LIB = 1
|
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|