15 lines
169 B
Makefile
15 lines
169 B
Makefile
|
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
|