summaryrefslogtreecommitdiff
path: root/graphics/asymptote/cudareflect/tinyexr/examples/cube2longlat/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'graphics/asymptote/cudareflect/tinyexr/examples/cube2longlat/Makefile')
-rw-r--r--graphics/asymptote/cudareflect/tinyexr/examples/cube2longlat/Makefile28
1 files changed, 0 insertions, 28 deletions
diff --git a/graphics/asymptote/cudareflect/tinyexr/examples/cube2longlat/Makefile b/graphics/asymptote/cudareflect/tinyexr/examples/cube2longlat/Makefile
deleted file mode 100644
index 6868dd9ac6..0000000000
--- a/graphics/asymptote/cudareflect/tinyexr/examples/cube2longlat/Makefile
+++ /dev/null
@@ -1,28 +0,0 @@
-INC_DIR = -I../../ -I../common -I ../../deps/miniz
-
-INCLUDES := ../../tinyexr.h
-OBJS := miniz.o tinyexr.o cube2longlat.o
-
-CFLAGS := -fsanitize=address -O2
-CXXFLAGS := $(CFLAGS) -std=c++11
-LDFLAGS := -fsanitize=address
-
-TARGET=cube2longlat
-
-all: $(TARGET)
-
-$(TARGET): $(OBJS)
- $(CXX) -o $(TARGET) $(LDFLAGS) $(OBJS)
-
-miniz.o: ../../deps/miniz/miniz.c
- $(CC) $(CFLAGS) -c $(INC_DIR) $<
-
-tinyexr.o: ../../tinyexr.cc
- $(CXX) $(CXXFLAGS) -c $(INC_DIR) $<
-
-cube2longlat.o: cube2longlat.cc
- $(CXX) $(CXXFLAGS) -c $(INC_DIR) $<
-
-.PHONY: clean
-clean:
- rm -rf $(TARGET) $(OBJS)