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. 4 include $(ADHD_DIR)/defs/definitions.mk 5 6 CFILES = \ 7 main.c 8 9 OFILES = $(CFILES:.c=.o) 10 MY_LIBS = asound 11 12 adhdinfo: $(OFILES) $(GAVD_ARCHIVE) 13 $(CC) -o $@ $(OFILES) $(LIBS) 14 15 -include *.d 16