summaryrefslogtreecommitdiffstats
path: root/tkimg/compat/zlib
diff options
context:
space:
mode:
authorWilliam Joye <wjoye@cfa.harvard.edu>2017-01-26 19:00:00 (GMT)
committerWilliam Joye <wjoye@cfa.harvard.edu>2017-01-26 19:00:00 (GMT)
commit5d50da5933a22ccfaad7127835fd45b976a78f4a (patch)
tree471d1aec141104baf9e0f99b2ffe26ee1931e152 /tkimg/compat/zlib
parent047b676a5066e76508dd14f86f9c6b9986b1b68d (diff)
downloadblt-5d50da5933a22ccfaad7127835fd45b976a78f4a.zip
blt-5d50da5933a22ccfaad7127835fd45b976a78f4a.tar.gz
blt-5d50da5933a22ccfaad7127835fd45b976a78f4a.tar.bz2
add tclConfig.sh support
Diffstat (limited to 'tkimg/compat/zlib')
-rwxr-xr-xtkimg/compat/zlib/Makefile5
-rwxr-xr-xtkimg/compat/zlib/contrib/blast/Makefile8
-rwxr-xr-xtkimg/compat/zlib/contrib/minizip/Makefile25
-rwxr-xr-xtkimg/compat/zlib/contrib/puff/Makefile42
-rwxr-xr-xtkimg/compat/zlib/contrib/untgz/Makefile14
-rwxr-xr-xtkimg/compat/zlib/nintendods/Makefile126
6 files changed, 0 insertions, 220 deletions
diff --git a/tkimg/compat/zlib/Makefile b/tkimg/compat/zlib/Makefile
deleted file mode 100755
index 8717d59..0000000
--- a/tkimg/compat/zlib/Makefile
+++ /dev/null
@@ -1,5 +0,0 @@
-all:
- -@echo "Please use ./configure first. Thank you."
-
-distclean:
- make -f Makefile.in distclean
diff --git a/tkimg/compat/zlib/contrib/blast/Makefile b/tkimg/compat/zlib/contrib/blast/Makefile
deleted file mode 100755
index 861cf16..0000000
--- a/tkimg/compat/zlib/contrib/blast/Makefile
+++ /dev/null
@@ -1,8 +0,0 @@
-blast: blast.c blast.h
- cc -DTEST -o blast blast.c
-
-test: blast
- blast < test.pk | cmp - test.txt
-
-clean:
- rm -f blast blast.o
diff --git a/tkimg/compat/zlib/contrib/minizip/Makefile b/tkimg/compat/zlib/contrib/minizip/Makefile
deleted file mode 100755
index fbba3ac..0000000
--- a/tkimg/compat/zlib/contrib/minizip/Makefile
+++ /dev/null
@@ -1,25 +0,0 @@
-CC=cc
-CFLAGS=-O -I../..
-
-UNZ_OBJS = miniunz.o unzip.o ioapi.o ../../libz.a
-ZIP_OBJS = minizip.o zip.o ioapi.o ../../libz.a
-
-.c.o:
- $(CC) -c $(CFLAGS) $*.c
-
-all: miniunz minizip
-
-miniunz: $(UNZ_OBJS)
- $(CC) $(CFLAGS) -o $@ $(UNZ_OBJS)
-
-minizip: $(ZIP_OBJS)
- $(CC) $(CFLAGS) -o $@ $(ZIP_OBJS)
-
-test: miniunz minizip
- ./minizip test readme.txt
- ./miniunz -l test.zip
- mv readme.txt readme.old
- ./miniunz test.zip
-
-clean:
- /bin/rm -f *.o *~ minizip miniunz
diff --git a/tkimg/compat/zlib/contrib/puff/Makefile b/tkimg/compat/zlib/contrib/puff/Makefile
deleted file mode 100755
index 0310c6e..0000000
--- a/tkimg/compat/zlib/contrib/puff/Makefile
+++ /dev/null
@@ -1,42 +0,0 @@
-CFLAGS=-O
-
-puff: puff.o pufftest.o
-
-puff.o: puff.h
-
-pufftest.o: puff.h
-
-test: puff
- puff zeros.raw
-
-puft: puff.c puff.h pufftest.o
- cc -fprofile-arcs -ftest-coverage -o puft puff.c pufftest.o
-
-# puff full coverage test (should say 100%)
-cov: puft
- @rm -f *.gcov *.gcda
- @puft -w zeros.raw 2>&1 | cat > /dev/null
- @echo '04' | xxd -r -p | puft 2> /dev/null || test $$? -eq 2
- @echo '00' | xxd -r -p | puft 2> /dev/null || test $$? -eq 2
- @echo '00 00 00 00 00' | xxd -r -p | puft 2> /dev/null || test $$? -eq 254
- @echo '00 01 00 fe ff' | xxd -r -p | puft 2> /dev/null || test $$? -eq 2
- @echo '01 01 00 fe ff 0a' | xxd -r -p | puft -f 2>&1 | cat > /dev/null
- @echo '02 7e ff ff' | xxd -r -p | puft 2> /dev/null || test $$? -eq 246
- @echo '02' | xxd -r -p | puft 2> /dev/null || test $$? -eq 2
- @echo '04 80 49 92 24 49 92 24 0f b4 ff ff c3 04' | xxd -r -p | puft 2> /dev/null || test $$? -eq 2
- @echo '04 80 49 92 24 49 92 24 71 ff ff 93 11 00' | xxd -r -p | puft 2> /dev/null || test $$? -eq 249
- @echo '04 c0 81 08 00 00 00 00 20 7f eb 0b 00 00' | xxd -r -p | puft 2> /dev/null || test $$? -eq 246
- @echo '0b 00 00' | xxd -r -p | puft -f 2>&1 | cat > /dev/null
- @echo '1a 07' | xxd -r -p | puft 2> /dev/null || test $$? -eq 246
- @echo '0c c0 81 00 00 00 00 00 90 ff 6b 04' | xxd -r -p | puft 2> /dev/null || test $$? -eq 245
- @puft -f zeros.raw 2>&1 | cat > /dev/null
- @echo 'fc 00 00' | xxd -r -p | puft 2> /dev/null || test $$? -eq 253
- @echo '04 00 fe ff' | xxd -r -p | puft 2> /dev/null || test $$? -eq 252
- @echo '04 00 24 49' | xxd -r -p | puft 2> /dev/null || test $$? -eq 251
- @echo '04 80 49 92 24 49 92 24 0f b4 ff ff c3 84' | xxd -r -p | puft 2> /dev/null || test $$? -eq 248
- @echo '04 00 24 e9 ff ff' | xxd -r -p | puft 2> /dev/null || test $$? -eq 250
- @echo '04 00 24 e9 ff 6d' | xxd -r -p | puft 2> /dev/null || test $$? -eq 247
- @gcov -n puff.c
-
-clean:
- rm -f puff puft *.o *.gc*
diff --git a/tkimg/compat/zlib/contrib/untgz/Makefile b/tkimg/compat/zlib/contrib/untgz/Makefile
deleted file mode 100755
index 8fd12a0..0000000
--- a/tkimg/compat/zlib/contrib/untgz/Makefile
+++ /dev/null
@@ -1,14 +0,0 @@
-CC=cc
-CFLAGS=-g
-
-untgz: untgz.o ../../libz.a
- $(CC) $(CFLAGS) -o untgz untgz.o -L../.. -lz
-
-untgz.o: untgz.c ../../zlib.h
- $(CC) $(CFLAGS) -c -I../.. untgz.c
-
-../../libz.a:
- cd ../..; ./configure; make
-
-clean:
- rm -f untgz untgz.o *~
diff --git a/tkimg/compat/zlib/nintendods/Makefile b/tkimg/compat/zlib/nintendods/Makefile
deleted file mode 100755
index 21337d0..0000000
--- a/tkimg/compat/zlib/nintendods/Makefile
+++ /dev/null
@@ -1,126 +0,0 @@
-#---------------------------------------------------------------------------------
-.SUFFIXES:
-#---------------------------------------------------------------------------------
-
-ifeq ($(strip $(DEVKITARM)),)
-$(error "Please set DEVKITARM in your environment. export DEVKITARM=<path to>devkitARM")
-endif
-
-include $(DEVKITARM)/ds_rules
-
-#---------------------------------------------------------------------------------
-# TARGET is the name of the output
-# BUILD is the directory where object files & intermediate files will be placed
-# SOURCES is a list of directories containing source code
-# DATA is a list of directories containing data files
-# INCLUDES is a list of directories containing header files
-#---------------------------------------------------------------------------------
-TARGET := $(shell basename $(CURDIR))
-BUILD := build
-SOURCES := ../../
-DATA := data
-INCLUDES := include
-
-#---------------------------------------------------------------------------------
-# options for code generation
-#---------------------------------------------------------------------------------
-ARCH := -mthumb -mthumb-interwork
-
-CFLAGS := -Wall -O2\
- -march=armv5te -mtune=arm946e-s \
- -fomit-frame-pointer -ffast-math \
- $(ARCH)
-
-CFLAGS += $(INCLUDE) -DARM9
-CXXFLAGS := $(CFLAGS) -fno-rtti -fno-exceptions
-
-ASFLAGS := $(ARCH) -march=armv5te -mtune=arm946e-s
-LDFLAGS = -specs=ds_arm9.specs -g $(ARCH) -Wl,-Map,$(notdir $*.map)
-
-#---------------------------------------------------------------------------------
-# list of directories containing libraries, this must be the top level containing
-# include and lib
-#---------------------------------------------------------------------------------
-LIBDIRS := $(LIBNDS)
-
-#---------------------------------------------------------------------------------
-# no real need to edit anything past this point unless you need to add additional
-# rules for different file extensions
-#---------------------------------------------------------------------------------
-ifneq ($(BUILD),$(notdir $(CURDIR)))
-#---------------------------------------------------------------------------------
-
-export OUTPUT := $(CURDIR)/lib/libz.a
-
-export VPATH := $(foreach dir,$(SOURCES),$(CURDIR)/$(dir)) \
- $(foreach dir,$(DATA),$(CURDIR)/$(dir))
-
-export DEPSDIR := $(CURDIR)/$(BUILD)
-
-CFILES := $(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.c)))
-CPPFILES := $(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.cpp)))
-SFILES := $(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.s)))
-BINFILES := $(foreach dir,$(DATA),$(notdir $(wildcard $(dir)/*.*)))
-
-#---------------------------------------------------------------------------------
-# use CXX for linking C++ projects, CC for standard C
-#---------------------------------------------------------------------------------
-ifeq ($(strip $(CPPFILES)),)
-#---------------------------------------------------------------------------------
- export LD := $(CC)
-#---------------------------------------------------------------------------------
-else
-#---------------------------------------------------------------------------------
- export LD := $(CXX)
-#---------------------------------------------------------------------------------
-endif
-#---------------------------------------------------------------------------------
-
-export OFILES := $(addsuffix .o,$(BINFILES)) \
- $(CPPFILES:.cpp=.o) $(CFILES:.c=.o) $(SFILES:.s=.o)
-
-export INCLUDE := $(foreach dir,$(INCLUDES),-I$(CURDIR)/$(dir)) \
- $(foreach dir,$(LIBDIRS),-I$(dir)/include) \
- -I$(CURDIR)/$(BUILD)
-
-.PHONY: $(BUILD) clean all
-
-#---------------------------------------------------------------------------------
-all: $(BUILD)
- @[ -d $@ ] || mkdir -p include
- @cp ../../*.h include
-
-lib:
- @[ -d $@ ] || mkdir -p $@
-
-$(BUILD): lib
- @[ -d $@ ] || mkdir -p $@
- @$(MAKE) --no-print-directory -C $(BUILD) -f $(CURDIR)/Makefile
-
-#---------------------------------------------------------------------------------
-clean:
- @echo clean ...
- @rm -fr $(BUILD) lib
-
-#---------------------------------------------------------------------------------
-else
-
-DEPENDS := $(OFILES:.o=.d)
-
-#---------------------------------------------------------------------------------
-# main targets
-#---------------------------------------------------------------------------------
-$(OUTPUT) : $(OFILES)
-
-#---------------------------------------------------------------------------------
-%.bin.o : %.bin
-#---------------------------------------------------------------------------------
- @echo $(notdir $<)
- @$(bin2o)
-
-
--include $(DEPENDS)
-
-#---------------------------------------------------------------------------------------
-endif
-#---------------------------------------------------------------------------------------