2009-07-28 21:26:36 +02:00
|
|
|
# Default value so one can compile i3-msg standalone
|
|
|
|
TOPDIR=..
|
|
|
|
|
|
|
|
include $(TOPDIR)/common.mk
|
|
|
|
|
2010-03-12 15:30:09 +01:00
|
|
|
CFLAGS += -I$(TOPDIR)/include
|
|
|
|
|
2009-07-28 21:26:36 +02:00
|
|
|
# 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 "CC $<"
|
2011-07-13 13:22:15 +02:00
|
|
|
$(CC) $(CPPFLAGS) $(CFLAGS) -c -o $@ $<
|
2009-07-28 21:26:36 +02:00
|
|
|
|
2011-07-25 00:31:35 +02:00
|
|
|
all: i3-msg
|
|
|
|
|
|
|
|
i3-msg: ${FILES}
|
2009-07-28 21:26:36 +02:00
|
|
|
echo "LINK i3-msg"
|
2011-07-13 13:28:31 +02:00
|
|
|
$(CC) $(LDFLAGS) -o i3-msg ${FILES} $(LIBS)
|
2009-07-28 21:26:36 +02:00
|
|
|
|
|
|
|
install: all
|
|
|
|
echo "INSTALL"
|
2010-03-16 00:08:54 +01:00
|
|
|
$(INSTALL) -d -m 0755 $(DESTDIR)$(PREFIX)/bin
|
|
|
|
$(INSTALL) -m 0755 i3-msg $(DESTDIR)$(PREFIX)/bin/
|
2009-07-28 21:26:36 +02:00
|
|
|
|
|
|
|
clean:
|
|
|
|
rm -f *.o
|
|
|
|
|
|
|
|
distclean: clean
|
|
|
|
rm -f i3-msg
|