diff options
| author | Antonin Descampe <antonin@gmail.com> | 2011-08-16 09:28:37 +0000 |
|---|---|---|
| committer | Antonin Descampe <antonin@gmail.com> | 2011-08-16 09:28:37 +0000 |
| commit | d1d662768d37880df947679a71c07f8d0bf2ef29 (patch) | |
| tree | 9ec42cd69fe046005b049ad94279b7fdebfd4dab /applications/codec | |
| parent | 4091882dfbd90b67d81cdaf774cfcbdb79cbe2ee (diff) | |
removed obsolete testing directory and *.nix files
Diffstat (limited to 'applications/codec')
| -rw-r--r-- | applications/codec/Makefile.nix | 68 |
1 files changed, 0 insertions, 68 deletions
diff --git a/applications/codec/Makefile.nix b/applications/codec/Makefile.nix deleted file mode 100644 index 183e9054..00000000 --- a/applications/codec/Makefile.nix +++ /dev/null @@ -1,68 +0,0 @@ -#codec Makefile -include ../config.nix - -CFLAGS = -Wall - -INSTALL_BIN = $(prefix)/bin - -INCLUDE = -I.. -I. -I../libopenjpeg -I../common -USERLIBS = -lm - -ifeq ($(WITH_TIFF),yes) -INCLUDE += $(TIFF_INCLUDE) -USERLIBS += $(TIFF_LIB) -endif - -ifeq ($(WITH_PNG),yes) -INCLUDE += $(PNG_INCLUDE) -USERLIBS += $(PNG_LIB) -endif - -ifeq ($(WITH_LCMS2),yes) -INCLUDE += $(LCMS2_INCLUDE) -USERLIBS += $(LCMS2_LIB) -endif - -ifeq ($(WITH_LCMS1),yes) -INCLUDE += $(LCMS1_INCLUDE) -USERLIBS += $(LCMS1_LIB) -endif - -CFLAGS += $(INCLUDE) -lstdc++ # -g -p -pg - -all: j2k_to_image image_to_j2k j2k_dump - install -d ../bin - install j2k_to_image image_to_j2k j2k_dump ../bin - -ifeq ($(ENABLE_SHARED),yes) -ELIB = ../libopenjpeg.so.$(MAJOR).$(MINOR).$(BUILD) -else -ELIB = ../libopenjpeg.a -endif - -j2k_to_image: j2k_to_image.c $(ELIB) - $(CC) $(CFLAGS) ../common/getopt.c index.c convert.c \ - ../common/color.c j2k_to_image.c \ - -o j2k_to_image $(ELIB) $(USERLIBS) - -image_to_j2k: image_to_j2k.c $(ELIB) - $(CC) $(CFLAGS) ../common/getopt.c index.c convert.c image_to_j2k.c \ - -o image_to_j2k $(ELIB) $(USERLIBS) - -j2k_dump: j2k_dump.c $(ELIB) - $(CC) $(CFLAGS) ../common/getopt.c index.c j2k_dump.c \ - -o j2k_dump $(ELIB) $(USERLIBS) - -clean: - rm -f j2k_to_image image_to_j2k j2k_dump - -install: all - install -d $(DESTDIR)$(INSTALL_BIN) - install -m 755 -o root -g root j2k_to_image $(DESTDIR)$(INSTALL_BIN) - install -m 755 -o root -g root image_to_j2k $(DESTDIR)$(INSTALL_BIN) - install -m 755 -o root -g root j2k_dump $(DESTDIR)$(INSTALL_BIN) - -uninstall: - rm -f $(DESTDIR)$(INSTALL_BIN)/j2k_to_image - rm -f $(DESTDIR)$(INSTALL_BIN)/image_to_j2k - rm -f $(DESTDIR)$(INSTALL_BIN)/j2k_dump |
