2009-09-20 15:44:14 +02:00
|
|
|
# Default value so one can compile i3-input standalone
|
|
|
|
TOPDIR=..
|
|
|
|
|
|
|
|
include $(TOPDIR)/common.mk
|
|
|
|
|
|
|
|
# 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-09-20 15:44:14 +02:00
|
|
|
|
2011-07-25 00:31:35 +02:00
|
|
|
all: i3-input
|
|
|
|
|
|
|
|
i3-input: ${FILES}
|
2009-09-20 15:44:14 +02:00
|
|
|
echo "LINK i3-input"
|
2011-07-25 00:31:35 +02:00
|
|
|
$(CC) $(LDFLAGS) -o $@ ${FILES} $(LIBS)
|
2009-09-20 15:44:14 +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-input $(DESTDIR)$(PREFIX)/bin/
|
2009-09-20 15:44:14 +02:00
|
|
|
|
|
|
|
clean:
|
|
|
|
rm -f *.o
|
|
|
|
|
|
|
|
distclean: clean
|
|
|
|
rm -f i3-input
|