diff options
author | Ivan Nardi <12729895+IvanNardi@users.noreply.github.com> | 2023-08-14 22:51:09 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-14 22:51:09 +0200 |
commit | 5867f43fae70b1a08b64e8635bf8183ba4d29124 (patch) | |
tree | 6204868707874c790dfe103fcdfc9c34f1b792bb /src/lib/Makefile.in | |
parent | cfbb7a423edd42976097b779ac9d71f1c4badeee (diff) |
Fix compilation on Windows (#2072)
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 7867f5424..c4e5880b6 100644 --- a/src/lib/Makefile.in +++ b/src/lib/Makefile.in @@ -21,7 +21,7 @@ CFLAGS += -I../include -Ithird_party/include -DNDPI_LIB_COMPILATION @NDPI_CF LDFLAGS += @NDPI_LDFLAGS@ LIBS = @ADDITIONAL_LIBS@ @LIBS@ @GPROF_LIBS@ -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)) +OBJECTS = $(patsubst protocols/%.c, protocols/%.o, $(wildcard protocols/*.c)) $(patsubst third_party/src/%.c, third_party/src/%.o, $(wildcard third_party/src/*.c)) $(patsubst third_party/src/hll/%.c, third_party/src/hll/%.o, $(wildcard third_party/src/hll/*.c)) $(patsubst ./%.c, ./%.o, $(wildcard ./*.c)) HEADERS = $(wildcard ../include/*.h) NDPI_VERSION_MAJOR = @NDPI_MAJOR@ NDPI_LIB_STATIC = libndpi.a |