X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=i3-msg%2FMakefile;h=fedb31e7902a1611f4d0f43f843dd3c6b1b25826;hb=b28ddca96d58689e50becd33de8a4031f520befd;hp=a5e15b6e49d0aad96826f4a2397398b1de4c3d55;hpb=8d2cb537942f7240b70026ddad8449a7010dad0c;p=i3%2Fi3 diff --git a/i3-msg/Makefile b/i3-msg/Makefile index a5e15b6e..fedb31e7 100644 --- a/i3-msg/Makefile +++ b/i3-msg/Makefile @@ -1,28 +1,10 @@ -# Default value so one can compile i3-msg standalone -TOPDIR=.. +all: + $(MAKE) -C .. i3-msg/i3-msg -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 $<" - $(CC) $(CFLAGS) -c -o $@ $< - -all: ${FILES} - echo "LINK i3-msg" - $(CC) -o i3-msg ${FILES} $(LDFLAGS) - -install: all - echo "INSTALL" - $(INSTALL) -d -m 0755 $(DESTDIR)/usr/bin - $(INSTALL) -m 0755 i3-msg $(DESTDIR)/usr/bin/ +install: + $(MAKE) -C .. install-i3-msg clean: - rm -f *.o + $(MAKE) -C .. clean-i3-msg -distclean: clean - rm -f i3-msg +.PHONY: all install clean