dfcb85e625
While at it break some long lines in the program output as well. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31282 a1c6a512-1295-4272-9138-f99709370657
18 lines
518 B
Makefile
18 lines
518 B
Makefile
# __________ __ ___.
|
|
# Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
# Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
# Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
# Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
# \/ \/ \/ \/ \/
|
|
# $Id$
|
|
#
|
|
CFLAGS = -g -Wall
|
|
CC = gcc
|
|
|
|
OUTPUT = chinachip
|
|
|
|
LIBSOURCES = chinachip.c
|
|
SOURCES = $(LIBSOURCES) main.c
|
|
|
|
include ../libtools.make
|
|
|