diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 1 insertions, 4 deletions
@@ -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) |