summaryrefslogtreecommitdiff
path: root/applications/codec
diff options
context:
space:
mode:
authorAntonin Descampe <antonin@gmail.com>2011-08-16 09:33:37 +0000
committerAntonin Descampe <antonin@gmail.com>2011-08-16 09:33:37 +0000
commit883e0826e2ce2014207165e5d16151583628f35b (patch)
treeda928d1eeb397956bb703ab926f9ec8e3693eca2 /applications/codec
parent003f9f79531a4fce16cc4672ececf5b066b38ff9 (diff)
removed obsolete testing directory and *.nix files (in trunk)
Diffstat (limited to 'applications/codec')
-rw-r--r--applications/codec/Makefile.nix68
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