Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

26 rader
673 B

  1. bench: bench-recursive
  2. bench-recursive:
  3. @if test -n "$(SUBDIRS)"; then for subdir in $(SUBDIRS); do \
  4. ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) bench) || exit 1; \
  5. done; \
  6. fi
  7. lolcheck: lolcheck-recursive
  8. lolcheck-recursive:
  9. @if test -n "$(SUBDIRS)"; then for subdir in $(SUBDIRS); do \
  10. ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) lolcheck) || exit 1; \
  11. done; \
  12. fi
  13. .PHONY: lolcheck bench
  14. SUFFIXES = .lolfx
  15. .lolfx.o:
  16. (echo "char const *"; \
  17. echo "lolfx_$(notdir $(basename $(filter %.lolfx, $^))) ="; \
  18. $(SED) 's/"/\\"/g' $(filter %.lolfx, $^) | $(SED) 's/\([^\r]*\).*/"\1\\n"/'; \
  19. echo ";") \
  20. | $(CXXCOMPILE) -xc++ -c - -o $@