Skip to content

Commit

Permalink
Local include references
Browse files Browse the repository at this point in the history
  • Loading branch information
Reza Naghibi committed Dec 1, 2015
1 parent 12f82f5 commit 88adef1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -97,7 +97,7 @@ int main()
```

```
> gcc -o client client.c ../c/src/libtextglass.a -I../c/src/ -I../c/src/data -I../c/src/jsmn
> gcc -o client client.c ../c/src/libtextglass.a -I../c/src/
> ./client
TextGlass C Client 1.0.0-beta
Pattern file: ../browser/domain/patterns.json
Expand Down
2 changes: 1 addition & 1 deletion src/Makefile
@@ -1,5 +1,5 @@
CC=gcc
CFLAGS=-O3 -Wall -g -fPIC -I. -Idata -Ijsmn
CFLAGS=-O3 -Wall -g -fPIC
LDFLAGS=-shared
LIBFLAGS=
RM=rm -f
Expand Down
6 changes: 3 additions & 3 deletions src/textglass.h
Expand Up @@ -31,9 +31,9 @@
#include <assert.h>
#endif

#include "list.h"
#include "hashtable.h"
#include "jsmn.h"
#include "data/list.h"
#include "data/hashtable.h"
#include "jsmn/jsmn.h"


#define TEXTGLASS_VERSION "1.0.0-beta"
Expand Down

0 comments on commit 88adef1

Please sign in to comment.