26 lines
554 B
Makefile
26 lines
554 B
Makefile
#
|
|
# IRIX makefile for the gui/include subdirectory of the FFSC software
|
|
#
|
|
# NOTE that the FFSC software does not build under IRIX, it builds under
|
|
# the VxWorks development platform ("Tornado") which is currently PC-hosted.
|
|
# This makefile is mostly for handling workarea-related tasks, like cleaning
|
|
# and clobbering.
|
|
#
|
|
|
|
LDIRT = *~
|
|
|
|
.DEFAULT:
|
|
@echo " "
|
|
@echo "This is a VxWorks directory - compile these programs in a"
|
|
@echo "VxWorks development environment such as Tornado."
|
|
@echo " "
|
|
|
|
|
|
default: .DEFAULT
|
|
|
|
clean:
|
|
rm -f $(LDIRT)
|
|
|
|
clobber: clean
|
|
|