aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Smeding <tom.smeding@gmail.com>2020-07-13 19:30:46 +0200
committerTom Smeding <tom.smeding@gmail.com>2020-07-13 19:30:46 +0200
commit13fd277b4a7090e47d351005db6a3dbadb66a0d0 (patch)
treeaa2622760152cc996ae38f4aefe5f6be2c3583d9
parentb5f5fdefbbee3ae75bb032774263885c46d63a7f (diff)
Remove 'remake' target from makefiles
-rw-r--r--Makefile5
-rw-r--r--plugins/Makefile4
-rw-r--r--weechat/Makefile5
3 files changed, 3 insertions, 11 deletions
diff --git a/Makefile b/Makefile
index 0ed32b2..41621f9 100644
--- a/Makefile
+++ b/Makefile
@@ -10,7 +10,7 @@ PLUGINDIR = plugins
PLUGINS = $(filter-out _%,$(patsubst $(PLUGINDIR)/%,%,$(shell find $(PLUGINDIR)/ -maxdepth 1 -type d)))
-.PHONY: all clean remake
+.PHONY: all clean
# Clear all implicit suffix rules
.SUFFIXES:
@@ -25,9 +25,6 @@ clean:
rm -f $(TARGETS) *.o *.sql.h
for pl in $(PLUGINS); do make --no-print-directory -C $(PLUGINDIR) $@ PLUGINNAME=$$pl; done
-remake: clean
- $(MAKE) all
-
$(TARGETS): $(patsubst %.c,%.o,$(wildcard *.c))
$(CC) -o $@ $^ $(LDFLAGS)
diff --git a/plugins/Makefile b/plugins/Makefile
index 26d3047..a87e798 100644
--- a/plugins/Makefile
+++ b/plugins/Makefile
@@ -13,15 +13,13 @@ SO_FLAGS += -fPIC
TARGET = $(PLUGINNAME)/$(PLUGINNAME).$(SO_EXT)
-.PHONY: all clean remake warning
+.PHONY: all clean warning
all: warning $(TARGET)
clean: warning
rm -rf $(TARGET) $(PLUGINNAME)/*.{o,dSYM}
-remake: clean all
-
warning:
ifndef PLUGINNAME
$(error "PLUGINNAME not set! Please run root Makefile instead.")
diff --git a/weechat/Makefile b/weechat/Makefile
index 0973efe..650bbf2 100644
--- a/weechat/Makefile
+++ b/weechat/Makefile
@@ -20,16 +20,13 @@ endif
.SECONDARY:
-.PHONY: all clean remake dynamiclib
+.PHONY: all clean dynamiclib
all: dynamiclib
clean:
rm -f *.$(DYLIB_EXT) *.o
-remake: clean
- $(MAKE) all
-
dynamiclib: tomsg.$(DYLIB_EXT)