Skip to content

Commit f5cbb0d

Browse files
committed
Fix events tests by appending source location in internal dir
1 parent 8fa81d3 commit f5cbb0d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

events/source/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ CC = gcc
44
AR = ar
55
SIZE = size
66

7-
SRC += $(wildcard *.c)
7+
SRC += $(wildcard *.c) $(wildcard ../internal/*.c)
88
OBJ := $(SRC:.c=.o)
99
DEP := $(SRC:.c=.d)
1010
ASM := $(SRC:.c=.s)
@@ -17,7 +17,7 @@ endif
1717
ifdef WORD
1818
CFLAGS += -m$(WORD)
1919
endif
20-
CFLAGS += -I. -I.. -I../.. -I../../..
20+
CFLAGS += -I. -I.. -I../..
2121
CFLAGS += -std=c99
2222
CFLAGS += -Wall
2323
CFLAGS += -D_XOPEN_SOURCE=600

0 commit comments

Comments
 (0)