]> git.sur5r.net Git - i3/i3/blobdiff - i3-nagbar/Makefile
Merge pull request #1712 from Airblader/feature-next-wm-size-hints-adopted
[i3/i3] / i3-nagbar / Makefile
index fed223db221325500a94497853d4357cc9ef16ff..12748e218e477b564bcdd9e3c3166316f7ed77ff 100644 (file)
@@ -1,30 +1,10 @@
-# Default value so one can compile i3-nagbar standalone
-TOPDIR=..
+all:
+       $(MAKE) -C .. i3-nagbar/i3-nagbar
 
-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-nagbar] CC $<"
-       $(CC) $(CPPFLAGS) $(CFLAGS) -c -o $@ $<
-
-all: i3-nagbar
-
-i3-nagbar: ${FILES}
-       echo "[i3-nagbar] LINK i3-nagbar"
-       $(CC) $(LDFLAGS) -o $@ ${FILES} $(LIBS)
-
-install: all
-       echo "[i3-nagbar] INSTALL"
-       $(INSTALL) -d -m 0755 $(DESTDIR)$(PREFIX)/bin
-       $(INSTALL) -m 0755 i3-nagbar $(DESTDIR)$(PREFIX)/bin/
+install:
+       $(MAKE) -C .. install-i3-nagbar
 
 clean:
-       rm -f *.o
+       $(MAKE) -C .. clean-i3-nagbar
 
-distclean: clean
-       rm -f i3-nagbar
+.PHONY: all install clean