aboutsummaryrefslogtreecommitdiffstats
path: root/src/blogc-make/rules.c
diff options
context:
space:
mode:
authorRafael G. Martins <rafael@rafaelmartins.eng.br>2017-01-03 03:56:03 +0100
committerRafael G. Martins <rafael@rafaelmartins.eng.br>2017-01-03 03:56:03 +0100
commit22bcb9599c83f396c54b09408beb9d8c2e5cff92 (patch)
tree76214834f3edc8155d7cdbed83463d34edca6ce5 /src/blogc-make/rules.c
parentbbbaf43e40e2b1fdfd8b82607035b19147b42aea (diff)
downloadblogc-22bcb9599c83f396c54b09408beb9d8c2e5cff92.tar.gz
blogc-22bcb9599c83f396c54b09408beb9d8c2e5cff92.tar.bz2
blogc-22bcb9599c83f396c54b09408beb9d8c2e5cff92.zip
make: fixed includes
Diffstat (limited to 'src/blogc-make/rules.c')
-rw-r--r--src/blogc-make/rules.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/blogc-make/rules.c b/src/blogc-make/rules.c
index 8a26fb5..b2416f0 100644
--- a/src/blogc-make/rules.c
+++ b/src/blogc-make/rules.c
@@ -11,15 +11,13 @@
#include <string.h>
#include <stdlib.h>
#include <time.h>
-#include <sys/types.h>
-#include <sys/stat.h>
-#include <unistd.h>
#include <math.h>
#include "../common/utils.h"
#include "ctx.h"
#include "exec.h"
#include "exec-native.h"
#include "rules.h"
+#include "settings.h"
// INDEX RULE
@@ -561,7 +559,7 @@ runserver_exec(bm_ctx_t *ctx, bc_slist_t *outputs, bool verbose)
}
-const bm_rule_t const rules[] = {
+const bm_rule_t rules[] = {
{
.name = "all",
.help = "run all build rules",