diff options
Diffstat (limited to 'roms/edk2/BaseTools/Source/C/BrotliCompress/brotli/research/Makefile')
-rw-r--r-- | roms/edk2/BaseTools/Source/C/BrotliCompress/brotli/research/Makefile | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/roms/edk2/BaseTools/Source/C/BrotliCompress/brotli/research/Makefile b/roms/edk2/BaseTools/Source/C/BrotliCompress/brotli/research/Makefile new file mode 100644 index 000000000..751b3162c --- /dev/null +++ b/roms/edk2/BaseTools/Source/C/BrotliCompress/brotli/research/Makefile @@ -0,0 +1,17 @@ +CC = g++ +CFLAGS += -O2 +CPPFLAGS += -std=c++11 +SOURCES = $(wildcard *.cc) +EXECUTABLES = $(SOURCES:.cc=) +BINDIR = bin + +all: $(EXECUTABLES) + +$(BINDIR): + mkdir -p $@ + +$(EXECUTABLES): $(BINDIR) + $(CC) $(CFLAGS) $(CPPFLAGS) $(addsuffix .cc, $@) -o $(BINDIR)/$@ -lgflags_nothreads + +clean: + rm -rf $(BINDIR) |