Files
ncpfs/util/com_err/Makefile
ncpfs archive import 0520c1d2f7 Import ncpfs 0.19
2026-04-28 20:39:57 +02:00

26 lines
331 B
Makefile

#
# Makefile for the com_err library
#
OBJECTS = com_err.o error_message.o et_name.o init_et.o
CFLAGS = -Wall -O2
all: $(OBJECTS)
dep:
$(CPP) -M $(INCLUDES) *.c > .depend
clean:
rm -f *.o
mrproper: clean
rm -f .depend
#
# include a dependency file if one exists
#
ifeq (.depend,$(wildcard .depend))
include .depend
endif