mirror of
https://github.com/xcat2/confluent.git
synced 2024-11-22 09:32:21 +00:00
a4fc64ea56
Since the rpm itself is built in an el7 container, build binary before spec driven build to be compatible.
21 lines
399 B
Makefile
21 lines
399 B
Makefile
CC := gcc
|
|
CFLAGS := -Os
|
|
TARGETS := copernicus autocons start_root confluent_imginfo
|
|
|
|
all: $(TARGETS) clortho urlmount
|
|
|
|
urlmount: urlmount.c
|
|
$(CC) $(CFLAGS) -o $@ $^ -D_FILE_OFFSET_BITS=64 -lcurl -lm -lfuse -lpthread
|
|
strip -s $@
|
|
|
|
clortho: clortho.c
|
|
$(CC) $(CFLAGS) -o $@ $^ -lcrypt
|
|
strip -s $@
|
|
|
|
$(TARGETS): % : %.c
|
|
$(CC) $(CFLAGS) -o $@ $^
|
|
strip -s $@
|
|
|
|
clean:
|
|
rm $(TARGETS) clortho urlmount
|