~ubuntu-branches/ubuntu/quantal/lightning-extension/quantal

« back to all changes in this revision

Viewing changes to config/rules.mk

  • Committer: Package Import Robot
  • Author(s): Chris Coulson
  • Date: 2012-06-20 23:50:32 UTC
  • mfrom: (1.3.2)
  • Revision ID: package-import@ubuntu.com-20120620235032-fx5tuhrswvsju9z3
Tags: 1.6~b1+build1-0ubuntu1
New upstream release from the beta channel (CALENDAR_1_6b1_BUILD1)

Show diffs side-by-side

added added

removed removed

Lines of Context:
311
311
 
312
312
endif # !GNU_CC
313
313
 
314
 
ifdef ENABLE_CXX_EXCEPTIONS
315
 
CXXFLAGS += $(MOZ_EXCEPTIONS_FLAGS_ON) -DMOZ_CPP_EXCEPTIONS=1
316
 
endif # ENABLE_CXX_EXCEPTIONS
317
314
endif # WINNT
318
315
 
319
316
ifeq ($(SOLARIS_SUNPRO_CXX),1)
953
950
        touch -t `date +%Y%m%d%H%M.%S -d "now+5seconds"` pgo.relink
954
951
endif
955
952
else # !WINNT || GNU_CC
956
 
ifeq ($(CPP_PROG_LINK),1)
957
953
        $(EXPAND_CCC) -o $@ $(CXXFLAGS) $(PROGOBJS) $(RESFILE) $(WIN32_EXE_LDFLAGS) $(LDFLAGS) $(WRAP_LDFLAGS) $(MOZ_GLUE_PROGRAM_LDFLAGS) $(LIBS_DIR) $(LIBS) $(OS_LIBS) $(EXTRA_LIBS) $(BIN_FLAGS) $(EXE_DEF_FILE)
958
 
else # ! CPP_PROG_LINK
959
 
        $(EXPAND_CC) -o $@ $(CFLAGS) $(PROGOBJS) $(RESFILE) $(WIN32_EXE_LDFLAGS) $(LDFLAGS) $(MOZ_GLUE_PROGRAM_LDFLAGS) $(WRAP_LDFLAGS) $(LIBS_DIR) $(LIBS) $(OS_LIBS) $(EXTRA_LIBS) $(BIN_FLAGS) $(EXE_DEF_FILE)
960
 
endif # CPP_PROG_LINK
961
954
endif # WINNT && !GNU_CC
962
955
endif # WINCE
963
956
 
1024
1017
        fi
1025
1018
endif   # MSVC with manifest tool
1026
1019
else
1027
 
ifeq ($(CPP_PROG_LINK),1)
1028
1020
        $(EXPAND_CCC) $(CXXFLAGS) -o $@ $< $(WIN32_EXE_LDFLAGS) $(LDFLAGS) $(MOZ_GLUE_PROGRAM_LDFLAGS) $(WRAP_LDFLAGS) $(LIBS_DIR) $(LIBS) $(OS_LIBS) $(EXTRA_LIBS) $(BIN_FLAGS)
1029
 
else
1030
 
        $(EXPAND_CC) $(CFLAGS) $(OUTOPTION)$@ $< $(WIN32_EXE_LDFLAGS) $(LDFLAGS) $(MOZ_GLUE_PROGRAM_LDFLAGS) $(WRAP_LDFLAGS) $(LIBS_DIR) $(LIBS) $(OS_LIBS) $(EXTRA_LIBS) $(BIN_FLAGS)
1031
 
endif # CPP_PROG_LINK
1032
1021
endif # WINNT && !GNU_CC
1033
1022
endif # WINCE
1034
1023