aboutsummaryrefslogtreecommitdiff
path: root/util/romtool/Makefile
blob: 291c940a18fe86a937434c4678f6a54e66dd4f85 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#
#
#

obj ?= $(shell pwd)

COMMANDS=create.o bootblock.o delete.o add.o print.o resize.o
OBJ=$(COMMANDS) romtool.o util.o fs.o
INC=romtool.h romfs.h

CC=gcc
CFLAGS=-g -Wall # -W -Werror

DESTDIR ?= /usr/local/bin

all: $(obj)/romtool $(obj)/tools/rom-mkpayload $(obj)/tools/rom-mkstage

$(obj)/romtool: $(patsubst %,$(obj)/%,$(OBJ))
	$(CC) -o $@ $(patsubst %,$(obj)/%,$(OBJ))

tobj = $(obj)/tools
tsrc = $(shell pwd)/tools

include $(tsrc)/Makefile

$(obj)/%.o: %.c $(INC)
	$(CC) $(CFLAGS) -c -o $@ $<

install: $(obj)/romtool $(obj)/tools/rom-mkpayload $(obj)/tools/rom-mkstage
	@ install -d $(DESTDIR)
	@ install -m 0755 $(obj)/romtool $(DESTDIR)/romtool
	@ install -m 0755 $(obj)/tools/rom-mkstage $(DESTDIR)/rom-mkstage
	@ install -m 0755 $(obj)/tools/rom-mkpayload $(DESTDIR)/rom-mkpayload

tags: 
	ctags *.[ch] */*.[ch]

clean: tools-clean
	rm -f $(patsubst %,$(obj)/%,$(OBJ)) $(obj)/romtool