aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorZoRo <dos21h@gmail.com>2018-08-01 21:40:07 +0100
committerZoRo <dos21h@gmail.com>2018-08-01 21:40:07 +0100
commitcf0c2cdc115c62359695718bdcf494fcb00e572e (patch)
treee3882bfb6f6e85921fb844326932ce96ddbd27a2 /Makefile
parent7649df10ac7d1503fde181faa5d356177b40c2df (diff)
downloadnotifylist-cf0c2cdc115c62359695718bdcf494fcb00e572e.tar.gz
notifylist-cf0c2cdc115c62359695718bdcf494fcb00e572e.zip
fixed to compile with arg.h
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index c7dc48b..267dca7 100644
--- a/Makefile
+++ b/Makefile
@@ -10,7 +10,7 @@ INCLUDE=-I./extlib/
all: createextlib $(OBJECTS) $(PROJECT)
$(PROJECT): $(SOURCES) notifylist.c
- $(CXX) -c notifylist.c
+ $(CXX) $(INCLUDE) -c notifylist.c
$(CC) $(OBJECTS) $(CFLAGS) $(LDFLAGS) -o $(PROJECT)
%.o: %.c