0
|
1 include ../../Makefile.rules
|
|
2
|
|
3 DEPENDS = ./Makefile
|
|
4
|
|
5 CMDS = attr binex build cobbler copy date \
|
|
6 deiniz del deldir ddir dir dirm display dmem dump echo exbin \
|
|
7 free ident idir iniz link list load login makdir mdir \
|
|
8 merge mfree mmap montype pmap proc procs pwd pxd rename save \
|
|
9 setime shell_21 sleep swread swset tee tmode tsmon unlink \
|
|
10 verify wcreate xmode
|
|
11 SUBS = gfx inkey
|
|
12 ALLOBJS = $(CMDS) $(SUBS)
|
|
13
|
|
14 SHELLMODS = shell_21 build copy date deiniz del dir display echo iniz \
|
|
15 link list load mdir merge mfree procs tmode unlink
|
|
16 UTILPAK1 = attr deldir dirm dmem free ident mmap proc rename setime tmode
|
|
17 UTILPAK2 = ddir idir pmap xmode
|
|
18
|
|
19 all: $(ALLOBJS) shell utilpak1 utilpak2 $(DEPENDS)
|
|
20 $(CHMOD) a+rx $(ALLOBJS) shell utilpak1 utilpak2
|
|
21
|
|
22 shell: $(SHELLMODS) $(DEPENDS)
|
|
23 $(MERGE) $(SHELLMODS)>$@
|
|
24 @$(ECHO) "*** Be sure the size of this file is less than 7681 bytes! ***"
|
|
25 @ls -l $@
|
|
26 @$(ECHO)
|
|
27
|
|
28 utilpak1: $(UTILPAK1) $(DEPENDS)
|
|
29 $(MERGE) $(UTILPAK1)>$@
|
|
30 @$(ECHO) "*** Be sure the size of this file is less than 7681 bytes! ***"
|
|
31 @ls -l $@
|
|
32 @$(ECHO)
|
|
33
|
|
34 utilpak2: $(UTILPAK2) $(DEPENDS)
|
|
35 $(MERGE) $(UTILPAK2)>$@
|
|
36 @$(ECHO) "*** Be sure the size of this file is less than 7681 bytes! ***"
|
|
37 @ls -l $@
|
|
38 @$(ECHO)
|
|
39
|
|
40 clean:
|
|
41 $(RM) $(ALLOBJS) shell utilpak1 utilpak2
|
|
42
|