From 303455b5ffaeae2dd53b5ad25a3c01ca08c30003 Mon Sep 17 00:00:00 2001 From: Andrew Loeliger Date: Fri, 10 Feb 2023 15:23:21 -0600 Subject: [PATCH] remove some makefile options that interfere with new directory structure --- Makefile | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 685403f..7fa3e84 100644 --- a/Makefile +++ b/Makefile @@ -15,10 +15,8 @@ all: $(EMULATOR_LIB) @echo All done install: all - @rm -rf $(PREFIX)/include $(PREFIX)/lib64 - @mkdir -p $(PREFIX)/include $(PREFIX)/lib64 - cp emulator.h $(PREFIX)/include/ - cp -r ap_types $(PREFIX)/include/ + @rm -rf $(PREFIX)/lib64 + @mkdir -p $(PREFIX)/lib64 cp $(EMULATOR_LIB) $(PREFIX)/lib64 $(EMULATOR_LIB): src/hls4ml/emulator.cc