Makefile 910 B

12345678910111213141516171819202122232425262728293031323334353637
  1. # Makefile of the library "LPC"
  2. # David Weenink and Paul Boersma 2018-08-10
  3. include ../makefile.defs
  4. CPPFLAGS = -I ../kar -I ../melder -I ../dwtools -I ../fon -I ../sys -I ../dwsys -I ../stat
  5. OBJECTS = Cepstrum.o Cepstrumc.o Cepstrum_and_Spectrum.o \
  6. Cepstrogram.o \
  7. Formant_extensions.o LineSpectralFrequencies.o \
  8. LPC.o LPC_and_Cepstrumc.o LPC_and_Formant.o LPC_and_LFCC.o \
  9. LPC_and_LineSpectralFrequencies.o LPC_and_Polynomial.o \
  10. LPC_to_Spectrum.o LPC_to_Spectrogram.o \
  11. LPC_and_Tube.o \
  12. Sound_and_LPC.o Sound_and_LPC_robust.o \
  13. Sound_and_Cepstrum.o Tube.o \
  14. VocalTractTier.o \
  15. praat_LPC_init.o manual_LPC.o
  16. .PHONY: all clean
  17. all: libLPC.a
  18. clean:
  19. $(RM) $(OBJECTS)
  20. $(RM) libLPC.a
  21. libLPC.a: $(OBJECTS)
  22. touch libLPC.a
  23. rm libLPC.a
  24. $(AR) cq libLPC.a $(OBJECTS)
  25. $(RANLIB) libLPC.a
  26. $(OBJECTS): *.h ../kar/*.h ../melder/*.h ../dwtools/*.h ../fon/*.h ../sys/*.h ../dwsys/*.h ../stat/*.h