blob: a9a2497b87f464be0df86b42a5f36d99d268c4f3 [file] [log] [blame]
# Copyright (c) 2012 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.
TARGET = hog
SRC = hog.c
CFLAGS = -std=c99 -D_GNU_SOURCE -O0 -frecord-gcc-switches
LDFLAGS = -lrt
$(TARGET): $(SRC)
$(CC) $(LDFLAGS) $(CFLAGS) -o $@ $^
clean:
$(RM) $(TARGET)