1
0
mirror of git://projects.qi-hardware.com/xburst-tools.git synced 2024-11-01 18:22:28 +02:00
xburst-tools/flash-tool/Makefile
lindnermarek 8979988877 [flash-tool] complete inflash stage1
The stage1 file can be uploaded but the following bootstrap is not successful. Once this bug is found adding stage2 is no problem.
2009-04-26 10:37:31 +00:00

51 lines
1.3 KiB
Makefile

#
# "Ingenic flash tool" - flash the Ingenic CPU via USB
#
# (C) Copyright 2009
# Author: Marek Lindner <lindner_marek@yahoo.de>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# version 3 as published by the Free Software Foundation.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor,
# Boston, MA 02110-1301, USA
ifneq ($(findstring $(MAKEFLAGS),s),s)
ifndef V
Q_CC = @echo ' ' CC $@;
Q_LD = @echo ' ' LD $@;
export Q_CC
export Q_LD
endif
endif
CC = gcc
CFLAGS += -pedantic -Wall -W -O1 -g3 -std=gnu99
LDFLAGS += -lusb
BINARY_NAME = inflash
SRC_C= main.c usb.c
SRC_H= main.h usb.h
SRC_O= $(SRC_C:.c=.o)
$(BINARY_NAME): $(SRC_O) $(SRC_H) Makefile
$(Q_LD)$(CC) -o $@ $(SRC_O) $(LDFLAGS)
.c.o:
$(Q_CC)$(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MD -c $< -o $@
-include $(SRC_C:.c=.d)
clean:
rm -f $(BINARY_NAME) *.o
rm -f `find . -name '*.d' -print`