mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-06 17:16:12 +00:00
27 lines
536 B
Makefile
27 lines
536 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
|
|
|
|
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
|
|
|