]> git.sur5r.net Git - i3/i3/blobdiff - i3-input/Makefile
Add stub Makefiles to allow subdir make calls
[i3/i3] / i3-input / Makefile
index 5929b4c490c6c8009d07ef8d8227b90369e07b0b..e1c8eae5603f9eb5cabaf8494fa5aa19d41b7808 100644 (file)
@@ -1,30 +1,10 @@
-# Default value so one can compile i3-input standalone
-TOPDIR=..
+all:
+       $(MAKE) -C .. i3-input/i3-input
 
-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 "[i3-input] CC $<"
-       $(CC) $(CPPFLAGS) $(CFLAGS) -c -o $@ $<
-
-all: i3-input
-
-i3-input: ${FILES}
-       echo "[i3-input] LINK i3-input"
-       $(CC) $(LDFLAGS) -o $@ ${FILES} $(LIBS)
-
-install: all
-       echo "[i3-input] INSTALL"
-       $(INSTALL) -d -m 0755 $(DESTDIR)$(PREFIX)/bin
-       $(INSTALL) -m 0755 i3-input $(DESTDIR)$(PREFIX)/bin/
+install:
+       $(MAKE) -C .. install-i3-input
 
 clean:
-       rm -f *.o
+       $(MAKE) -C .. clean-i3-input
 
-distclean: clean
-       rm -f i3-input
+.PHONY: all install clean