Changes in src/examples/Makefile.in [38a0a4d:4b1afb6]
- File:
-
- 1 edited
-
src/examples/Makefile.in (modified) (11 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/examples/Makefile.in
r38a0a4d r4b1afb6 36 36 PRE_UNINSTALL = : 37 37 POST_UNINSTALL = : 38 build_triplet = @build@39 host_triplet = @host@40 38 noinst_PROGRAMS = fstream_test$(EXEEXT) vector_test$(EXEEXT) \ 41 avl_test$(EXEEXT) Bench$(EXEEXT)39 avl_test$(EXEEXT) 42 40 subdir = src/examples 43 41 DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in … … 51 49 CONFIG_CLEAN_VPATH_FILES = 52 50 PROGRAMS = $(noinst_PROGRAMS) 53 Bench_SOURCES = Bench.c54 Bench_OBJECTS = Bench.$(OBJEXT)55 Bench_LDADD = $(LDADD)56 51 am_avl_test_OBJECTS = avl_test.$(OBJEXT) avl0.$(OBJEXT) avl1.$(OBJEXT) \ 57 52 avl2.$(OBJEXT) avl3.$(OBJEXT) avl4.$(OBJEXT) \ … … 89 84 am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) 90 85 am__v_GEN_0 = @echo " GEN " $@; 91 SOURCES = Bench.c$(avl_test_SOURCES) $(fstream_test_SOURCES) \86 SOURCES = $(avl_test_SOURCES) $(fstream_test_SOURCES) \ 92 87 $(vector_test_SOURCES) 93 DIST_SOURCES = Bench.c$(avl_test_SOURCES) $(fstream_test_SOURCES) \88 DIST_SOURCES = $(avl_test_SOURCES) $(fstream_test_SOURCES) \ 94 89 $(vector_test_SOURCES) 95 90 ETAGS = etags … … 106 101 BACKEND_CC = @BACKEND_CC@ 107 102 CC = @CFA_BINDIR@/cfa 108 CCAS = @CCAS@109 CCASDEPMODE = @CCASDEPMODE@110 CCASFLAGS = @CCASFLAGS@111 103 CCDEPMODE = @CCDEPMODE@ 112 104 CFA_BACKEND_CC = @CFA_BACKEND_CC@ … … 118 110 119 111 # applies to both programs 120 CFLAGS = 112 CFLAGS = -g -Wall -Wno-unused-function # TEMPORARY: does not build with -O2 121 113 CPP = @CPP@ 122 114 CPPFLAGS = @CPPFLAGS@ … … 145 137 LIBS = @LIBS@ 146 138 LTLIBOBJS = @LTLIBOBJS@ 147 MACHINE_TYPE = @MACHINE_TYPE@148 139 MAINT = @MAINT@ 149 140 MAKEINFO = @MAKEINFO@ … … 177 168 am__untar = @am__untar@ 178 169 bindir = @bindir@ 179 build = @build@180 170 build_alias = @build_alias@ 181 build_cpu = @build_cpu@182 build_os = @build_os@183 build_vendor = @build_vendor@184 171 builddir = @builddir@ 185 172 datadir = @datadir@ … … 188 175 dvidir = @dvidir@ 189 176 exec_prefix = @exec_prefix@ 190 host = @host@191 177 host_alias = @host_alias@ 192 host_cpu = @host_cpu@193 host_os = @host_os@194 host_vendor = @host_vendor@195 178 htmldir = @htmldir@ 196 179 includedir = @includedir@ … … 216 199 top_builddir = @top_builddir@ 217 200 top_srcdir = @top_srcdir@ 218 AM_CFLAGS = -g -Wall -Wno-unused-function -O2219 201 fstream_test_SOURCES = fstream_test.c 220 202 vector_test_SOURCES = vector_int.c array.c vector_test.c … … 273 255 -rm -f *.tab.c 274 256 275 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Bench.Po@am__quote@276 257 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/array.Po@am__quote@ 277 258 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/avl-private.Po@am__quote@ … … 599 580 600 581 601 Bench : Bench.c602 @for ccflags in "-debug" "-nodebug"; do \603 echo ${CC} ${AM_CFLAGS} ${CFLAGS} $${ccflags} -lrt Bench.c;\604 ${CC} ${AM_CFLAGS} ${CFLAGS} $${ccflags} -lrt Bench.c;\605 ./a.out ; \606 done ; \607 rm -f ./a.out ;608 609 582 # Tell versions [3.59,3.63) of GNU make to not export all variables. 610 583 # Otherwise a system limit (for SysV at least) may be exceeded.
Note:
See TracChangeset
for help on using the changeset viewer.