Magellan Linux

Contents of /trunk/linterm_tools/fw_builder/bundle-tools/Makefile

Parent Directory Parent Directory | Revision Log Revision Log


Revision 658 - (show annotations) (download)
Mon Jan 14 16:57:24 2008 UTC (16 years, 3 months ago) by niro
File size: 485 byte(s)
initial import

1 CFLAGS = -Wall
2 PROGS = fwextract fwcs fwpack
3
4 all: $(PROGS)
5
6 fwpack: fwpack.c fwhead.h
7 $(CC) $(CFLAGS) $< -o $@
8
9 fwhead.h:
10 @echo 'Runing extract_head.pl now. If this fails, you might have to run it by hand'
11 @echo 'to specify the right sample bundle.'
12 ./extract_head.pl
13
14 clean:
15 rm -f $(PROGS) fwhead.h
16
17 install:
18 @echo 'Since these are not quite general-purpose tools, there is no install target.'
19 @echo 'If you want, you can move these tools somewhere into your $PATH yourself.'