Makefile 682 B

12345678910111213141516171819202122232425262728
  1. # Makefile of the library "stat"
  2. # Paul Boersma, 10 August 2018
  3. include ../makefile.defs
  4. CPPFLAGS = -I ../kar -I ../melder -I ../sys -I ../dwsys -I ../dwtools -I ../fon -I ../stat
  5. OBJECTS = Table.o TableEditor.o Regression.o manual_statistics.o \
  6. praat_TableOfReal.o praat_Stat.o \
  7. TableOfReal.o Distributions.o Distributions_and_Strings.o PairDistribution.o \
  8. LogisticRegression.o
  9. .PHONY: all clean
  10. all: libstat.a
  11. libstat.a: $(OBJECTS)
  12. touch libstat.a
  13. rm libstat.a
  14. $(AR) cq libstat.a $(OBJECTS)
  15. $(RANLIB) libstat.a
  16. clean:
  17. $(RM) $(OBJECTS)
  18. $(RM) libstat.a
  19. $(OBJECTS): *.h ../kar/*.h ../melder/*.h ../sys/*.h ../dwsys/*.h ../dwtools/*.h ../fon/*.h ../stat/*.h