Makefile 446 B

123456789101112131415161718192021
  1. #Modify this to point to the PJSIP location.
  2. PJBASE=../../..
  3. include $(PJBASE)/build.mak
  4. CC = $(APP_CC)
  5. LDFLAGS = $(APP_LDFLAGS)
  6. LDLIBS = $(APP_LDLIBS)
  7. CFLAGS = $(APP_CFLAGS)
  8. CPPFLAGS= $(APP_CXXFLAGS)
  9. # If your application is in a file named myapp.cpp or myapp.c
  10. # # this is the line you will need to build the binary.
  11. # all: myapp
  12. #
  13. cmp_wav: cmp_wav.c
  14. $(CC) -o $@ $< $(CPPFLAGS) $(LDFLAGS) $(LDLIBS)
  15. clean:
  16. rm -f cmp_wav.o cmp_wav