(file) Return to message.mak CVS log (file) (dir) Up to [Pegasus] / pegasus / mak

 1 chuck 1.1 
 2           #include $(ROOT)/mak/common.mak
 3           
 4           ################################################################################
 5           ##
 6           ## Build list of bundle names.
 7           ##
 8           ################################################################################
 9           
10           # If we are using ICU resource bundles, then the compiled bundles are .res files
11           ifdef ICU_ROOT
12           	TMP_MSG_BUNDLES = $(foreach i,$(MSG_SOURCES),$(MSG_DIR)/$i)
13           	MSG_BUNDLES = $(TMP_MSG_BUNDLES:.txt=.res)
14           endif
15           
16           ################################################################################
17           ##
18           ## Message compile rule:
19           ##
20           ################################################################################
21           
22 chuck 1.1 # Rule for ICU resource bundles
23           ifdef ICU_ROOT
24           $(MSG_DIR)/%.res: %.txt $(ERROR)
25           	$(MKDIRHIER) $(MSG_DIR)
26           	$(MSG_COMPILE) -d $(MSG_DIR) $(MSG_FLAGS) -p $(MSG_PACKAGE) $*.txt
27           	@ $(ECHO)
28           endif
29           
30           ################################################################################
31           ##
32           ## Clean rules:
33           ##
34           ################################################################################
35           
36           FILES_TO_CLEAN = $(MSG_BUNDLES)
37           
38           include $(ROOT)/mak/clean.mak
39           
40 mday  1.2 ################################################################################
41           ##
42           ## Build list of object names:
43           ##
44           ################################################################################
45           
46           include $(ROOT)/mak/objects.mak
47           
48           include $(ROOT)/mak/depend.mak
49           
50           include $(ROOT)/mak/build.mak
51           
52           include $(ROOT)/mak/docxx.mak
53           
54           include $(ROOT)/mak/sub.mak
55           
56           -include $(OBJ_DIR)/depend.mak
57           
58           include $(ROOT)/mak/misc.mak
59           
60 chuck 1.1 
61           tests: $(ERROR)
62           
63           poststarttests: $(ERROR)

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2