Revert "autotools: fix lots of warning."

This reverts commit 885d6c7d9b.

Reverting all as it seems those warning where actually for working code...
This commit is contained in:
Cedric Bail 2016-05-16 09:25:43 -07:00
parent 06eedd9421
commit e0538735d9
9 changed files with 15 additions and 16 deletions

View File

@ -9,7 +9,7 @@ filesdir = $(datadir)/elementary/config
files_DATA = profile.cfg
.cfg: .src
%.cfg: %.src
$(AM_V_EET) \
$(MKDIR_P) $(top_builddir)/config/; \
$(EET) -i $(top_builddir)/config/$@ config $< 0

View File

@ -13,7 +13,7 @@ files_DATA = \
icon.png \
base.cfg
.cfg: .src
%.cfg: %.src
$(AM_V_EET) \
$(MKDIR_P) $(top_builddir)/config/default/; \
$(EET) -e $(top_builddir)/config/default/$@ config $< 1

View File

@ -13,7 +13,7 @@ files_DATA = \
icon.png \
base.cfg
.cfg: .src
%.cfg: %.src
$(AM_V_EET) \
$(MKDIR_P) $(top_builddir)/config/; \
$(EET) -e $(top_builddir)/config/mobile/$@ config $< 1

View File

@ -13,7 +13,7 @@ files_DATA = \
icon.png \
base.cfg
.cfg: .src
%.cfg: %.src
$(AM_V_EET) \
$(MKDIR_P) $(top_builddir)/config/standard/; \
$(EET) -e $(top_builddir)/config/standard/$@ config $< 1

View File

@ -19,5 +19,5 @@ am__v_ELUA_0 = @echo " ELUA " $@;
SUFFIXES += .lua
.eo.lua: .eo ${_ELUA_GEN_DEP}
%.eo.lua: %.eo ${_ELUA_GEN_DEP}
$(AM_V_ELUA)$(ELUA_GEN) $(EOLIAN_FLAGS) -o $@ $<

View File

@ -5,22 +5,22 @@ am__v_EOL_0 = @echo " EOLIAN " $@;
SUFFIXES = .eo .eo.c .eo.h .eo.legacy.h .eot .eot.h
.eo.c: .eo ${_EOLIAN_GEN_DEP}
%.eo.c: %.eo ${_EOLIAN_GEN_DEP}
$(AM_V_EOL) \
$(MKDIR_P) $(dir $@); \
$(EOLIAN_GEN) --legacy $(EOLIAN_FLAGS) --gc -o $@ $<
.eo.h: .eo ${_EOLIAN_GEN_DEP}
%.eo.h: %.eo ${_EOLIAN_GEN_DEP}
$(AM_V_EOL) \
$(MKDIR_P) $(dir $@); \
$(EOLIAN_GEN) $(EOLIAN_FLAGS) --gh -o $@ $<
.eot.h: .eot ${_EOLIAN_GEN_DEP}
%.eot.h: %.eot ${_EOLIAN_GEN_DEP}
$(AM_V_EOL) \
$(MKDIR_P) $(dir $@); \
$(EOLIAN_GEN) $(EOLIAN_FLAGS) --gh -o $@ $<
.eo.legacy.h: .eo ${_EOLIAN_GEN_DEP}
%.eo.legacy.h: %.eo ${_EOLIAN_GEN_DEP}
$(AM_V_EOL) \
$(MKDIR_P) $(dir $@); \
$(EOLIAN_GEN) --legacy $(EOLIAN_FLAGS) --gh -o $@ $<

View File

@ -12,5 +12,5 @@ am__v_EOLJS_0 = @echo " EOLJS " $@;
SUFFIXES += .eo.js.cc
.eo.js.cc: .eo $(_EOLIAN_JS_DEP)
%.eo.js.cc: %.eo $(_EOLIAN_JS_DEP)
$(AM_V_EOLJS)$(EOLIAN_JS) $(EOLIAN_FLAGS) -o $@ $<

View File

@ -239,7 +239,7 @@ clean-local:
ELEMENTARY_CODEGEN_FLAGS = --prefix=codegen_example
codegen_example_generated.c codegen_example_generated.h: codegen_example.edj
$(AM_V_CODEGEN)$(ELEMENTARY_CODEGEN) $(ELEMENTARY_CODEGEN_FLAGS) $< elm/example/mylayout/default codegen_example_generated.c codegen_example_generated.h
$(AM_V_CODEGEN)$(ELEMENTARY_CODEGEN) $(ELEMENTARY_CODEGEN_FLAGS) $(<) elm/example/mylayout/default codegen_example_generated.c codegen_example_generated.h
BUILT_SOURCES = codegen_example_generated.c codegen_example_generated.h

View File

@ -1,4 +1,3 @@
MAINTAINERCLEANFILES = Makefile.in
CLEANFILES =
@ -133,16 +132,16 @@ eolian_cxx_inherit_01.$(OBJEXT): $(GENERATED)
eolian_cxx_callbacks_01_SOURCES = eolian_cxx_callbacks_01.cc
.eo.hh: .eo
%.eo.hh: %.eo
$(AM_V_EOLCXX)$(EOLIAN_CXX) $(EOLIAN_FLAGS) -I${abs_srcdir} -o $@ $<
.eo.impl.hh: .eo.hh
%.eo.impl.hh: %.eo.hh
true $<
.eo.c: .eo
%.eo.c: %.eo
$(AM_V_EOL)$(EOLIAN_GEN) --legacy $(EOLIAN_FLAGS) --gc -o $@ $<
.eo.h: .eo
%.eo.h: %.eo
$(AM_V_EOL)$(EOLIAN_GEN) $(EOLIAN_FLAGS) --gh -o $@ $<
examples: $(ECXX_EXAMPLE_EOS) $(GENERATED) $(EXTRA_PROGRAMS)