diff options
author | Luca Deri <deri@ntop.org> | 2019-07-23 22:45:31 +0200 |
---|---|---|
committer | Luca Deri <deri@ntop.org> | 2019-07-23 22:45:31 +0200 |
commit | d398b0aba68df1fbd441677f29c446d05ec0abff (patch) | |
tree | 58d6e89bc25c51f7c020e7efb71fde25342d1569 /src/lib/Makefile.in | |
parent | 8ff68a58f22c09bf7317f84edd3f666601d9266a (diff) |
Simplified makefile
Fixed warning
Diffstat (limited to 'src/lib/Makefile.in')
-rw-r--r-- | src/lib/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/Makefile.in b/src/lib/Makefile.in index 3b7dac796..1a884ac9d 100644 --- a/src/lib/Makefile.in +++ b/src/lib/Makefile.in @@ -17,7 +17,7 @@ CC = @CC@ CFLAGS += -fPIC -DPIC -I../include -Ithird_party/include -DNDPI_LIB_COMPILATION -O2 -g -Wall RANLIB = ranlib -OBJECTS = $(patsubst protocols/%.c, protocols/%.o, $(wildcard protocols/*.c)) $(patsubst third_party/src/%.c, third_party/src/%.o, $(wildcard third_party/src/*.c)) ndpi_main.o ndpi_utils.o ndpi_classify.o +OBJECTS = $(patsubst protocols/%.c, protocols/%.o, $(wildcard protocols/*.c)) $(patsubst third_party/src/%.c, third_party/src/%.o, $(wildcard third_party/src/*.c)) $(patsubst ./%.c, ./%.o, $(wildcard ./*.c)) HEADERS = $(wildcard ../include/*.h) NDPI_VERSION_MAJOR = @NDPI_MAJOR@ NDPI_LIB_STATIC = libndpi.a |