Skip to content

Commit 5c0f426

Browse files
committed
Makefile and include fix
1 parent 01f3cbb commit 5c0f426

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

Makefile

+4-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,10 @@ CPPC = g++
44
LIBSRCDIR = src
55
INSTDIR = /usr/lib
66
EXDIR := examples
7-
LIBSRCS := $(shell find $(LIBSRCDIR) -name '*.c')
8-
EXSRCS := $(shell find $(EXDIR) -name '*.c' -o -name '*.cpp')
7+
LIBSRCS := $(wildcard src/*.c)
8+
#EXSRCS := $(shell find $(EXDIR) -name '*.c' -o -name '*.cpp')
9+
EXSRCS := $(wildcard examples/*.c)
10+
EXSRCS += $(wildcard examples/*.cpp)
911
LIBOBJS := $(addsuffix .o, $(basename $(LIBSRCS)))
1012
EXBINS := $(addsuffix .e, $(basename $(EXSRCS)))
1113
CFLAGS = -Wall -Wextra -Werror -O3

examples/sierpinski.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1+
#include "../src/pluto.h"
12
#include <math.h>
2-
#include <pluto.h>
33
#include <stdlib.h>
44
#include <unistd.h>
55

0 commit comments

Comments
 (0)