1. 09 3月, 2016 2 次提交
    • R
      Adapt unix Makefile template to 'no-makedepend' · 29eed3dd
      Richard Levitte 提交于
      This change is a bit more complex, as it involves several recipe
      variants.
      
      Also, remove the $(CROSS_COMPILE) prefix for the makedepend program.
      When we use the program "makedepend", this doesn't serve anything,
      and when we use the compiler, this value isn't even used.
      Reviewed-by: NRich Salz <rsalz@openssl.org>
      29eed3dd
    • R
      Redo the Unix source code generator · 8458f1bf
      Richard Levitte 提交于
      For assembler, we want the final target to be foo.s (lowercase s).
      However, the build.info may have lines like this (note upper case S):
      
          GENERATE[foo.S]=foo.pl
      
      This indicates that foo.s (lowercase s) is still to be produced, but
      that producing it will take an extra step via $(CC) -E.  Therefore,
      the following variants (simplified for display) can be generated:
      
          GENERATE[foo.S]=foo.pl  =>  foo.s: foo.pl
                                      	$(PERL) $foo.pl $@.S; \
                                      	$(CC) $(CFLAGS) -E -P $@.S > $@ && \
                                      	rm -f $@.S
      
          GENERATE[foo.s]=foo.pl  =>  foo.s: foo.pl
                                      	$(PERL) $foo.pl $@
      
          GENERATE[foo.S]=foo.m4  =>  foo.s: foo.m4
                                      	m4 -B 8192 $foo.m4 > $@.S; \
                                      	$(CC) $(CFLAGS) -E -P $@.S > $@ && \
                                      	rm -f $@.S
      
          GENERATE[foo.s]=foo.m4  =>  foo.s: foo.m4
                                      	m4 -B 8192 $foo.m4 > $@
      Reviewed-by: NAndy Polyakov <appro@openssl.org>
      8458f1bf
  2. 08 3月, 2016 2 次提交
  3. 04 3月, 2016 2 次提交
  4. 03 3月, 2016 2 次提交
  5. 01 3月, 2016 1 次提交
  6. 28 2月, 2016 2 次提交
  7. 27 2月, 2016 1 次提交
  8. 25 2月, 2016 1 次提交
  9. 22 2月, 2016 1 次提交
  10. 21 2月, 2016 4 次提交
  11. 20 2月, 2016 3 次提交
  12. 19 2月, 2016 16 次提交
  13. 15 2月, 2016 3 次提交