mirror of
https://github.com/xcat2/confluent.git
synced 2024-11-22 09:32:21 +00:00
11 lines
210 B
Makefile
11 lines
210 B
Makefile
vtbufferd: vtbufferd.c tmt.c
|
|
gcc -O3 --std=gnu11 -o vtbufferd vtbufferd.c tmt.c
|
|
|
|
clean:
|
|
rm -f vtbufferd
|
|
|
|
install:
|
|
mkdir -p $(DESTDIR)/opt/confluent/bin
|
|
$(INSTALL) -s vtbufferd $(DESTDIR)/opt/confluent/bin
|
|
|