home *** CD-ROM | disk | FTP | other *** search
- .PHONY: install clean
-
- install: $(OSE)/lib/$(OSE_ARCH)_$(OSE_VERSION)/cpp
-
- $(OSE)/lib/$(OSE_ARCH)_$(OSE_VERSION)/cpp : cpp
- cp $? $@
- chmod 0775 $@
-
- cpp:
- ifeq ($(OSE_ARCH),pyr)
- /.attbin/make -f Makefile cpp
- elif ($(OSE_ARCH),pc386ix)
- make -f Makefile MACHINE=M_INTERACTIVE cpp
- else
- make -f Makefile cpp
- endif
-
- clean:
- ifeq ($(OSE_ARCH),pyr)
- /.attbin/make -f Makefile clean
- else
- make -f Makefile clean
- endif
-
-