26 lines
292 B
Makefile
26 lines
292 B
Makefile
#
|
|
# Makefile for the linux ncp-filesystem routines.
|
|
#
|
|
|
|
default:
|
|
make -C ..
|
|
|
|
all:
|
|
|
|
install:
|
|
make -C com_err install
|
|
|
|
clean:
|
|
make -C com_err clean
|
|
|
|
mrproper:
|
|
make -C com_err mrproper
|
|
|
|
#
|
|
# include a dependency file if one exists
|
|
#
|
|
ifeq (.depend,$(wildcard .depend))
|
|
include .depend
|
|
endif
|
|
|