Files
ncpfs/lib/com_err/Makefile
ncpfs archive import 0979ae6a41 Import ncpfs 2.2.0
2026-04-28 20:39:59 +02:00

28 lines
369 B
Makefile

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