* reordered a little bit
[mascara-docs.git] / i86 / elks / elksnet / Makefile
blob73e01e3683f57da37575302087caa05703aba26e
1 # Makefile to make all programs in the ELKSnet package.
3 ###############################################################################
4 # Compile everything present.
6 DIRS = ktcp # screen
8 all: $(DIRS)
9 @for DIR in $(DIRS) ; do \
10 make -C "$$DIR" all || exit 1; \
11 done
13 ###############################################################################
14 # Clean everything up.
16 clean:
17 @for DIR in $(DIRS) ; do \
18 make -C "$$DIR" clean || exit 1; \
19 done
21 ###############################################################################
22 # Compile named subsystems. Add entries as appropriate.
24 ktcp:
25 @make -C ktcp all
27 screen:
28 @make -C screen all
30 ###############################################################################
31 # EOF.
33 .PHONY: ktcp screen