blob: d01879299dc8cac42969511e4201045d0bfe4fe2 [file] [log] [blame]
# Copyright (c) 2009 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
LDFLAGS = -lbase -lrt -pthread
TARGET = hardware_MemoryThroughput
SRC = hardware_MemoryThroughput.cc
$(TARGET): $(SRC)
$(CXX) -O3 -o $@ $^ $(LDFLAGS)
clean:
$(RM) $(TARGET)