12 lines
139 B
Makefile
Executable file
12 lines
139 B
Makefile
Executable file
#/bin/sh
|
|
|
|
all:
|
|
@echo 'building example programs....'
|
|
cd cxx; @MAKE@ all
|
|
|
|
clean:
|
|
cd cxx; @MAKE@ clean
|
|
|
|
depends:
|
|
cd cxx; @MAKE@ depends
|
|
|