1# Copyright (c) 2011 The Chromium OS Authors. All rights reserved. 2# Use of this source code is governed by a BSD-style license that can be 3# found in the LICENSE file. 4include $(ADHD_DIR)/defs/definitions.mk 5 6CFILES = \ 7 main.c 8 9OFILES = $(CFILES:.c=.o) 10MY_LIBS = asound 11 12adhdinfo: $(OFILES) $(GAVD_ARCHIVE) 13 $(CC) -o $@ $(OFILES) $(LIBS) 14 15-include *.d 16