Commit 8d979bd1 authored by Antoine Kaufmann's avatar Antoine Kaufmann Committed by Jonas Kaufmann
Browse files

lib/simbricks/mem: fix makefile to actually build libmem

parent cb14af2e
# Copyright 2021 Max Planck Institute for Software Systems, and # Copyright 2022 Max Planck Institute for Software Systems, and
# National University of Singapore # National University of Singapore
# #
# Permission is hereby granted, free of charge, to any person obtaining # Permission is hereby granted, free of charge, to any person obtaining
...@@ -22,13 +22,13 @@ ...@@ -22,13 +22,13 @@
include mk/subdir_pre.mk include mk/subdir_pre.mk
lib_pcie := $(d)libpcie.a lib_mem := $(d)libmem.a
OBJS := $(addprefix $(d),if.o) OBJS := $(addprefix $(d),if.o)
libsimbricks_objs += $(OBJS) libsimbricks_objs += $(OBJS)
$(lib_pcie): $(OBJS) $(lib_mem): $(OBJS)
CLEAN := $(lib_pcie) $(OBJS) CLEAN := $(lib_mem) $(OBJS)
include mk/subdir_post.mk include mk/subdir_post.mk
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment