You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

42 lines
2.2 KiB

  1. # LTL2BA - Version 1.0 - October 2001
  2. # Written by Denis Oddoux, LIAFA, France
  3. # Copyright (c) 2001 Denis Oddoux
  4. #
  5. # This program is free software; you can redistribute it and/or modify
  6. # it under the terms of the GNU General Public License as published by
  7. # the Free Software Foundation; either version 2 of the License, or
  8. # (at your option) any later version.
  9. #
  10. # This program is distributed in the hope that it will be useful,
  11. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. # GNU General Public License for more details.
  14. #
  15. # You should have received a copy of the GNU General Public License
  16. # along with this program; if not, write to the Free Software
  17. # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  18. #
  19. # Based on the translation algorithm by Gastin and Oddoux,
  20. # presented at the CAV Conference, held in 2001, Paris, France 2001.
  21. # Send bug-reports and/or questions to: Denis.Oddoux@liafa.jussieu.fr
  22. # or to Denis Oddoux
  23. # LIAFA, UMR 7089, case 7014
  24. # Universite Paris 7
  25. # 2, place Jussieu
  26. # F-75251 Paris Cedex 05
  27. # FRANCE
  28. CC=gcc
  29. CFLAGS= -O3 -ansi -DNXT
  30. LTL2BA= parse.o lex.o main.o trans.o buchi.o set.o \
  31. mem.o rewrt.o cache.o alternating.o generalized.o
  32. ltl2ba: $(LTL2BA)
  33. $(CC) $(CFLAGS) -o ltl2ba $(LTL2BA)
  34. $(LTL2BA): ltl2ba.h
  35. clean:
  36. rm -f ltl2ba *.o core