summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Ruckert <martin.ruckert@hm.edu>2022-01-20 10:02:33 +0000
committerMartin Ruckert <martin.ruckert@hm.edu>2022-01-20 10:02:33 +0000
commitd06a090310e7b221f4e7f12bfc2a3c12e009c3c8 (patch)
tree5af93d40ddf0a9e57a00cd80d68cb0cbc44454c1
parentd19bf66792a0ef6a6d35ace1c95c095d4572ce71 (diff)
simplifying the Makefile to include only the strictly necessary stuff
git-svn-id: svn://tug.org/texlive/trunk@61667 c570f23f-e606-0410-a88d-b1316a301751
-rw-r--r--Build/source/texk/web2c/hitexdir/hintview/src/Makefile18
1 files changed, 0 insertions, 18 deletions
diff --git a/Build/source/texk/web2c/hitexdir/hintview/src/Makefile b/Build/source/texk/web2c/hitexdir/hintview/src/Makefile
index 876d708a79d..1716ac75bde 100644
--- a/Build/source/texk/web2c/hitexdir/hintview/src/Makefile
+++ b/Build/source/texk/web2c/hitexdir/hintview/src/Makefile
@@ -2,36 +2,18 @@
CC = gcc
CFLAGS = -g -Og -DDEBUG -Wall
LDFLAGS = -g -Og
-#GL_DEFINES = -DGLEW_STATIC -DTW_NO_DIRECT3D -DTW_NO_LIB_PRAGMA -DTW_STATIC -D_CRT_SECURE_NO_WARNINGS
FT_INCLUDES = -I/usr/include/freetype2
-GL_INCLUDES = $(FT_INCLUDES)
-
-
-HFILES = hint.h htex.h format.h get.h basetypes.h error.h \
- hrender.h rendernative.h hfonts.h
-
-WFILES = format.w hint.w htex.ch btex.w
-
-HINT_FILES = get.c hint.c tables.c htex.c hrender.c hfonts.c \
- $(HFILES) $(WFILES)
OBJ=main.o renderOGL.o get.o hint.o tables.o htex.o hrender.o hfonts.o
-ifeq (Msys,$(shell uname -o))
-LIBS= ../external/glfw-3.1.2/msys.build/src/libglfw3.a ../external/libglew.a -lfreetype \
- -lm -lz
-# -ldl -lm -lX11 -lpthread -lXrandr -lXinerama -lXi -lXcursor -lGL -lz
-else
LIBS= -lglfw -lGLEW -ldl -lfreetype -lX11 -lXrandr -lXinerama -lXi -lXcursor -lGL -lz -lpthread -lm
-endif
all: hintview
.SUFFIXES:
-
hint.o: hint.c
$(CC) $(CFLAGS) -Wno-unused-but-set-variable -o $@ -c $<