13b2f53813
Use the same name for output file / library and folder to simplify dependencies. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31334 a1c6a512-1295-4272-9138-f99709370657
18 lines
525 B
Makefile
18 lines
525 B
Makefile
# __________ __ ___.
|
|
# Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
# Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
# Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
# Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
# \/ \/ \/ \/ \/
|
|
# $Id$
|
|
#
|
|
CFLAGS = -g -Wall
|
|
CC = gcc
|
|
|
|
OUTPUT = chinachippatcher
|
|
|
|
LIBSOURCES = chinachip.c
|
|
SOURCES = $(LIBSOURCES) main.c
|
|
|
|
include ../libtools.make
|
|
|