pmaports/dtbtool/Makefile

15 lines
169 B
Makefile
Raw Normal View History

2017-07-27 14:08:21 +00:00
CFLAGS=-O2 -g -Wall
CC=gcc
PROGNAME=dtbtool
all: dtbtool
%.o: %.c
$(CC) $(CFLAGS) -c $<
dtbtool: dtbtool.o
$(CC) -g -o dtbtool dtbtool.o
clean:
rm -f *.o dtbtool