You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/app-backup/cpdup/files/Makefile.linux

14 lines
304 B

OBJS = cpdup.o fsmid.o hclink.o hcproto.o misc.o
CFLAGS += -D__cpdup_unused="__attribute__ ((unused))" -D_GNU_SOURCE -D__USE_FILE_OFFSET64 -DNOMD5
ifndef NOPTHREADS
CFLAGS += -DUSE_PTHREADS=1 -pthread
endif
all: $(OBJS)
$(CC) $(CFLAGS) $(LDFLAGS) $(OBJS) -o cpdup
.c.o:
$(CC) $(CFLAGS) -c -o $@ $<