33 lines
898 B
Plaintext
33 lines
898 B
Plaintext
$OpenBSD: patch-i3-msg_Makefile,v 1.4 2011/12/01 16:00:01 dcoppa Exp $
|
|
--- i3-msg/Makefile.orig Wed Nov 30 16:31:25 2011
|
|
+++ i3-msg/Makefile Wed Nov 30 16:32:50 2011
|
|
@@ -3,27 +3,22 @@ TOPDIR=..
|
|
|
|
include $(TOPDIR)/common.mk
|
|
|
|
-CFLAGS += -I$(TOPDIR)/include
|
|
-
|
|
# Depend on the object files of all source-files in src/*.c and on all header files
|
|
FILES=$(patsubst %.c,%.o,$(wildcard *.c))
|
|
HEADERS=$(wildcard *.h)
|
|
|
|
# Depend on the specific file (.c for each .o) and on all headers
|
|
%.o: %.c ${HEADERS}
|
|
- echo "[i3-msg] CC $<"
|
|
$(CC) $(CPPFLAGS) $(CFLAGS) -c -o $@ $<
|
|
|
|
all: i3-msg
|
|
|
|
i3-msg: ${FILES}
|
|
- echo "[i3-msg] LINK i3-msg"
|
|
$(CC) $(LDFLAGS) -o i3-msg ${FILES} $(LIBS)
|
|
|
|
install: all
|
|
- echo "[i3-msg] INSTALL"
|
|
$(INSTALL) -d -m 0755 $(DESTDIR)$(PREFIX)/bin
|
|
- $(INSTALL) -m 0755 i3-msg $(DESTDIR)$(PREFIX)/bin/
|
|
+ ${INSTALL_PROGRAM} i3-msg $(DESTDIR)$(PREFIX)/bin/
|
|
|
|
clean:
|
|
rm -f *.o
|