Move i3-msg to the new Makefile layout

next
Quentin Glidic 2012-05-16 16:22:57 +02:00
parent 0c2e4d8347
commit bbede0ba00
2 changed files with 28 additions and 1 deletions

View File

@ -2,7 +2,7 @@ TOPDIR=$(shell pwd)
include $(TOPDIR)/common.mk
SUBDIRS:=i3-msg i3-input i3-nagbar i3bar i3-dump-log
SUBDIRS:=i3-input i3-nagbar i3bar i3-dump-log
ALL_TARGETS =
INSTALL_TARGETS =
@ -14,6 +14,7 @@ all: real-all
include libi3/libi3.mk
include src/i3.mk
include i3-config-wizard/i3-config-wizard.mk
include i3-msg/i3-msg.mk
real-all: $(ALL_TARGETS) subdirs

26
i3-msg/i3-msg.mk Normal file
View File

@ -0,0 +1,26 @@
ALL_TARGETS += i3-msg/i3-msg
INSTALL_TARGETS += install-i3-msg
CLEAN_TARGETS += clean-i3-msg
i3_msg_SOURCES := $(wildcard i3-msg/*.c)
i3_msg_HEADERS := $(wildcard i3-msg/*.h)
i3_msg_OBJECTS := $(i3_msg_SOURCES:.c=.o)
i3-msg/%.o: i3-msg/%.c $(i3_msg_HEADERS)
echo "[i3-msg] CC $<"
$(CC) $(CPPFLAGS) $(CFLAGS) -c -o $@ $<
i3-msg/i3-msg: libi3.a $(i3_msg_OBJECTS)
echo "[i3-msg] Link i3-msg"
$(CC) $(LDFLAGS) -o $@ $(filter-out libi3.a,$^) $(LIBS)
install-i3-msg: i3-msg/i3-msg
echo "[i3-msg] Install"
$(INSTALL) -d -m 0755 $(DESTDIR)$(PREFIX)/bin
$(INSTALL) -m 0755 i3-msg/i3-msg $(DESTDIR)$(PREFIX)/bin/
clean-i3-msg:
echo "[i3-msg] Clean"
rm -f $(i3_msg_OBJECTS) i3-msg/i3-msg