Files
Arquivotheca.SunOS-4.1.4/usr.etc/c2convert/Makefile
seta75D ff309bfe1c Init
2021-10-11 18:37:13 -03:00

24 lines
346 B
Makefile

#
#
# @(#)Makefile 1.1 94/10/31 SMI
#
BINS= c2convert
OBJS= main.o list.o read.o make.o update.o create.o split.o chownmod.o
CFLAGS= -O
LDFLAGS= -n
.KEEP_STATE:
all: $(BINS)
$(BINS): $(OBJS)
$(LINK.c) -o $@ $(OBJS)
clean:
$(RM) $(BINS) $(OBJS)
install: $(BINS)
install -d $(DESTDIR)/usr/lib
install -s -m 755 $(BINS) $(DESTDIR)/usr/lib