Mercurial > hg > Members > kono > nitros9-code
annotate 3rdparty/utils/dladd/makefile @ 2812:1f47bdb9f356 lwtools-port
Added new utils section in 3rdparty and updated makefile(s)
Added a new utils section in 3rdparty/utils called dladd.
This section will include utilities that are made by David Ladd.
Updated 3rdparty/utils/makefile to include this new section.
Updated level2/coco3/cmds/makefile to add CMDS_D2 into the
echo string that has CMDS and CMDS_DW so now it will output
CMDS CMDS_D2 and CMDS_DW
author | David Ladd <drencor-xeen@users.sf.net> |
---|---|
date | Tue, 12 Feb 2013 12:38:22 -0600 |
parents | |
children | dd5499bc4bdd |
rev | line source |
---|---|
2812
1f47bdb9f356
Added new utils section in 3rdparty and updated makefile(s)
David Ladd <drencor-xeen@users.sf.net>
parents:
diff
changeset
|
1 include ../../../rules.mak |
1f47bdb9f356
Added new utils section in 3rdparty and updated makefile(s)
David Ladd <drencor-xeen@users.sf.net>
parents:
diff
changeset
|
2 |
1f47bdb9f356
Added new utils section in 3rdparty and updated makefile(s)
David Ladd <drencor-xeen@users.sf.net>
parents:
diff
changeset
|
3 DEPENDS := ./makefile |
1f47bdb9f356
Added new utils section in 3rdparty and updated makefile(s)
David Ladd <drencor-xeen@users.sf.net>
parents:
diff
changeset
|
4 |
1f47bdb9f356
Added new utils section in 3rdparty and updated makefile(s)
David Ladd <drencor-xeen@users.sf.net>
parents:
diff
changeset
|
5 CMDS = cls |
1f47bdb9f356
Added new utils section in 3rdparty and updated makefile(s)
David Ladd <drencor-xeen@users.sf.net>
parents:
diff
changeset
|
6 |
1f47bdb9f356
Added new utils section in 3rdparty and updated makefile(s)
David Ladd <drencor-xeen@users.sf.net>
parents:
diff
changeset
|
7 DEFSDIR = $(CC68L1)/defs |
1f47bdb9f356
Added new utils section in 3rdparty and updated makefile(s)
David Ladd <drencor-xeen@users.sf.net>
parents:
diff
changeset
|
8 |
1f47bdb9f356
Added new utils section in 3rdparty and updated makefile(s)
David Ladd <drencor-xeen@users.sf.net>
parents:
diff
changeset
|
9 ALLOBJS = $(CMDS) |
1f47bdb9f356
Added new utils section in 3rdparty and updated makefile(s)
David Ladd <drencor-xeen@users.sf.net>
parents:
diff
changeset
|
10 |
1f47bdb9f356
Added new utils section in 3rdparty and updated makefile(s)
David Ladd <drencor-xeen@users.sf.net>
parents:
diff
changeset
|
11 all: banner $(ALLOBJS) $(DEPENDS) |
1f47bdb9f356
Added new utils section in 3rdparty and updated makefile(s)
David Ladd <drencor-xeen@users.sf.net>
parents:
diff
changeset
|
12 |
1f47bdb9f356
Added new utils section in 3rdparty and updated makefile(s)
David Ladd <drencor-xeen@users.sf.net>
parents:
diff
changeset
|
13 banner: |
1f47bdb9f356
Added new utils section in 3rdparty and updated makefile(s)
David Ladd <drencor-xeen@users.sf.net>
parents:
diff
changeset
|
14 @$(ECHO) "**************************************************" |
1f47bdb9f356
Added new utils section in 3rdparty and updated makefile(s)
David Ladd <drencor-xeen@users.sf.net>
parents:
diff
changeset
|
15 @$(ECHO) "* *" |
1f47bdb9f356
Added new utils section in 3rdparty and updated makefile(s)
David Ladd <drencor-xeen@users.sf.net>
parents:
diff
changeset
|
16 @$(ECHO) "* David Ladd tools *" |
1f47bdb9f356
Added new utils section in 3rdparty and updated makefile(s)
David Ladd <drencor-xeen@users.sf.net>
parents:
diff
changeset
|
17 @$(ECHO) "* *" |
1f47bdb9f356
Added new utils section in 3rdparty and updated makefile(s)
David Ladd <drencor-xeen@users.sf.net>
parents:
diff
changeset
|
18 @$(ECHO) "**************************************************" |
1f47bdb9f356
Added new utils section in 3rdparty and updated makefile(s)
David Ladd <drencor-xeen@users.sf.net>
parents:
diff
changeset
|
19 |
1f47bdb9f356
Added new utils section in 3rdparty and updated makefile(s)
David Ladd <drencor-xeen@users.sf.net>
parents:
diff
changeset
|
20 clean: |
1f47bdb9f356
Added new utils section in 3rdparty and updated makefile(s)
David Ladd <drencor-xeen@users.sf.net>
parents:
diff
changeset
|
21 $(RM) $(ALLOBJS) |
1f47bdb9f356
Added new utils section in 3rdparty and updated makefile(s)
David Ladd <drencor-xeen@users.sf.net>
parents:
diff
changeset
|
22 |