blob: 3019259be61cc48528caa1f83da8a41d094155d9 [file] [log] [blame]
# Copyright (c) 2015 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.
CFLAGS = -Wall -Werror
TARGETS = read mmap alt_syscall adjtimex clock_adjtime
all: $(TARGETS)
%: %.c
$(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS)
clean:
$(RM) $(TARGETS)