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.
 
 
 
 
 
 

40 lines
806 B

  1. CPPFLAGS+= -I../lib
  2. LDFLAGS+= -L../lib
  3. LDLIBS+= -lcuefile
  4. TARGETS= cuebreakpoints cueconvert cueprint
  5. all: $(TARGETS)
  6. clean:
  7. rm -f $(TARGETS)
  8. rm -f *.o
  9. INSTALL= install -c
  10. INSTALL_PROGRAM= $(INSTALL)
  11. INSTALL_DATA= $(INSTALL) -m 644
  12. prefix= /usr/local
  13. exec_prefix= $(prefix)
  14. bindir= $(exec_prefix)/bin
  15. DESTDIR=
  16. install: all
  17. $(INSTALL) -d $(DESTDIR)$(bindir)
  18. for i in $(TARGETS) ; do \
  19. $(INSTALL_PROGRAM) $$i $(DESTDIR)$(bindir)/$$i ; \
  20. done
  21. uninstall:
  22. -for i in $(TARGETS) ; do \
  23. rm -f $(DESTDIR)$(bindir)/$$i ; \
  24. done
  25. # dependancies
  26. # generated by `gcc -MM *.c'
  27. cuebreakpoints.o: cuebreakpoints.c ../lib/cuefile.h ../lib/cd.h \
  28. ../lib/cdtext.h
  29. cueconvert.o: cueconvert.c ../lib/cuefile.h ../lib/cd.h ../lib/cdtext.h
  30. cueprint.o: cueprint.c ../lib/cuefile.h ../lib/cd.h ../lib/cdtext.h