mirror of
https://github.com/facebook/zstd.git
synced 2025-09-16 17:46:31 +02:00
add include guards
alleviate risks of double inclusion (typically via transitive includes)
This commit is contained in:
@@ -8,6 +8,10 @@
|
|||||||
# You may select, at your option, one of the above-listed licenses.
|
# You may select, at your option, one of the above-listed licenses.
|
||||||
# ################################################################
|
# ################################################################
|
||||||
|
|
||||||
|
# Ensure the file is not included twice
|
||||||
|
ifndef LIBZSTD_MK_INCLUDED
|
||||||
|
LIBZSTD_MK_INCLUDED := 1
|
||||||
|
|
||||||
##################################################################
|
##################################################################
|
||||||
# Input Variables
|
# Input Variables
|
||||||
##################################################################
|
##################################################################
|
||||||
@@ -223,3 +227,5 @@ endif # BUILD_DIR
|
|||||||
ZSTD_SUBDIR := $(LIBZSTD)/common $(LIBZSTD)/compress $(LIBZSTD)/decompress $(LIBZSTD)/dictBuilder $(LIBZSTD)/legacy $(LIBZSTD)/deprecated
|
ZSTD_SUBDIR := $(LIBZSTD)/common $(LIBZSTD)/compress $(LIBZSTD)/decompress $(LIBZSTD)/dictBuilder $(LIBZSTD)/legacy $(LIBZSTD)/deprecated
|
||||||
vpath %.c $(ZSTD_SUBDIR)
|
vpath %.c $(ZSTD_SUBDIR)
|
||||||
vpath %.S $(ZSTD_SUBDIR)
|
vpath %.S $(ZSTD_SUBDIR)
|
||||||
|
|
||||||
|
endif # LIBZSTD_MK_INCLUDED
|
||||||
|
Reference in New Issue
Block a user