blob: 9671299a621a50daef6e010232229d792f57856a [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
TARGETS = read mmap alt_syscall adjtimex clock_adjtime
all: $(TARGETS)
%: %.c
$(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS)
clean:
$(RM) $(TARGETS)