Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/browser/sessionstore/Makefile.am
blob: 3c9a055c6f7782d266e1d7caa6817793b9a19226 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
sessionstoredir = $(pkgdatadir)/mozilla/components

sessionstore_DATA =		\
	nsISessionStore.xpt	\
	nsSessionStore.js

EXTRA_DIST = $(sessionstore_DATA)

BUILT_SOURCES = \
	nsISessionStore.xpt	\
	nsISessionStore.h

stamp_files = \
	stamp-nsISessionStore.xpt	\
	stamp-nsISessionStore.h

nsISessionStore.xpt: stamp-nsISessionStore.xpt
	@true
stamp-nsISessionStore.xpt: nsISessionStore.idl
	$(XPIDL) -m typelib -w -v -I $(MOZILLA_IDL_DIR) -e nsISessionStore.xpt \
	nsISessionStore.idl \
	&& echo timestamp > $(@F)

nsISessionStore.h: stamp-nsISessionStore.h
	@true
stamp-nsISessionStore.h: nsISessionStore.idl
	$(XPIDL) -m header -w -v -I $(MOZILLA_IDL_DIR) -e nsISessionStore.h \
	nsISessionStore.idl \
	&& echo timestamp > $(@F)

CLEANFILES = $(stamp_files) $(BUILT_SOURCES)
DISTCLEANFILES = $(stamp_files) $(BUILT_SOURCES)
MAINTAINERCLEANFILES = $(stamp_files) $(BUILT_SOURCES)