diff options
author | ZoRo <dos21h@gmail.com> | 2018-08-01 21:40:07 +0100 |
---|---|---|
committer | ZoRo <dos21h@gmail.com> | 2018-08-01 21:40:07 +0100 |
commit | cf0c2cdc115c62359695718bdcf494fcb00e572e (patch) | |
tree | e3882bfb6f6e85921fb844326932ce96ddbd27a2 /Makefile | |
parent | 7649df10ac7d1503fde181faa5d356177b40c2df (diff) | |
download | notifylist-cf0c2cdc115c62359695718bdcf494fcb00e572e.tar.gz notifylist-cf0c2cdc115c62359695718bdcf494fcb00e572e.zip |
fixed to compile with arg.h
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |