We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 01f3cbb commit 5c0f426Copy full SHA for 5c0f426
Makefile
@@ -4,8 +4,10 @@ CPPC = g++
4
LIBSRCDIR = src
5
INSTDIR = /usr/lib
6
EXDIR := examples
7
-LIBSRCS := $(shell find $(LIBSRCDIR) -name '*.c')
8
-EXSRCS := $(shell find $(EXDIR) -name '*.c' -o -name '*.cpp')
+LIBSRCS := $(wildcard src/*.c)
+#EXSRCS := $(shell find $(EXDIR) -name '*.c' -o -name '*.cpp')
9
+EXSRCS := $(wildcard examples/*.c)
10
+EXSRCS += $(wildcard examples/*.cpp)
11
LIBOBJS := $(addsuffix .o, $(basename $(LIBSRCS)))
12
EXBINS := $(addsuffix .e, $(basename $(EXSRCS)))
13
CFLAGS = -Wall -Wextra -Werror -O3
examples/sierpinski.c
@@ -1,5 +1,5 @@
1
+#include "../src/pluto.h"
2
#include <math.h>
-#include <pluto.h>
3
#include <stdlib.h>
#include <unistd.h>
0 commit comments