Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Blame | Last modification | View Log | RSS feed

  1. CC = gcc
  2.  
  3. LDFLAGS = -lm
  4. CFLAGS = -Wall
  5.  
  6. all: index_create
  7.  
  8.  
  9. bio.o : bio.c bio.h
  10. cio.o : cio.c cio.h
  11. int.o : int.c
  12. pi.o  : pi.c pi.h int.h
  13. index_create.o : index_create.c j2k.h cio.h tcd.h int.h
  14. t2.o  : t2.c t2.h tcd.h bio.h j2k.h pi.h tgt.h int.h cio.h
  15. tgt.o : tgt.c bio.h tgt.h
  16. tcd.o : tcd.c tcd.h t2.h int.h
  17. jpip.o : jpip.c j2k.h cio.h tcd.h int.h
  18. jp2.o : jp2.c j2k.h cio.h tcd.h int.h
  19.  
  20. index_create : bio.o cio.o int.o pi.o t2.o tgt.o tcd.o index_create.o jpip.o jp2.o
  21.  
  22. clean:
  23.         rm -rf *.o *.*~ *~ core.*
  24.