aboutsummaryrefslogtreecommitdiff
path: root/.pc/respect-dpkg-buildflags.patch
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2022-10-10 10:27:32 -0400
committerB. Stack <bgstack15@gmail.com>2022-10-10 10:29:47 -0400
commitd5c3cd287aed5684cd60f90eb88e19403079887e (patch)
treecc7d5f7c8350a15fd55f349304412629c04169ef /.pc/respect-dpkg-buildflags.patch
parentreadd all images (diff)
downloadfbxkb-d5c3cd287aed5684cd60f90eb88e19403079887e.tar.gz
fbxkb-d5c3cd287aed5684cd60f90eb88e19403079887e.tar.bz2
fbxkb-d5c3cd287aed5684cd60f90eb88e19403079887e.zip
restore to orig tgz for dpkg-build prep
Diffstat (limited to '.pc/respect-dpkg-buildflags.patch')
-rw-r--r--.pc/respect-dpkg-buildflags.patch/Makefile.common39
1 files changed, 0 insertions, 39 deletions
diff --git a/.pc/respect-dpkg-buildflags.patch/Makefile.common b/.pc/respect-dpkg-buildflags.patch/Makefile.common
deleted file mode 100644
index 8d5c4ef..0000000
--- a/.pc/respect-dpkg-buildflags.patch/Makefile.common
+++ /dev/null
@@ -1,39 +0,0 @@
-ifeq (,$(TOPDIR))
-$(error TOPDIR variable must be defined)
-endif
-
-all:
-
-$(TOPDIR)/Makefile.config:
- $(error Please run $(TOPDIR)/configure first)
-
-ifneq ($(MAKECMDGOALS),clean)
-ifneq ($(MAKECMDGOALS),distclean)
-ifneq ($(MAKECMDGOALS),tar)
--include $(TOPDIR)/Makefile.config
-endif
-endif
-endif
-
-CC = gcc
-LIBS = $(shell pkg-config --libs gtk+-2.0 gdk-pixbuf-2.0 gdk-pixbuf-xlib-2.0) -L/usr/X11R6/lib -lXmu
-INCS = $(shell pkg-config --cflags gtk+-2.0 gdk-pixbuf-2.0 gdk-pixbuf-xlib-2.0)
-CFLAGS = -O2 # overwriten by command line or env. variable
-CFLAGS += -Wall # always nice to have
-ifneq (,$(DEVEL))
-CFLAGS := -g -Wall
-endif
-
-# -DGTK_DISABLE_DEPRECATED does not work yet
-CFLAGS += -g -DG_DISABLE_DEPRECATED -DGDK_DISABLE_DEPRECATED -DGTK_DISABLE_DEPRECATED
-
-%.o: %.c
- $(CC) $(CFLAGS) $(INCS) -c $<
-
-%.dep: %.c
- $(CC) $(CFLAGS) $(INCS) -MM $< -o $@
-
-.PHONY: all clean distclean install uninstall
-
-distclean: clean
-install: all
bgstack15