mirror of
https://github.com/apache/cloudstack.git
synced 2025-11-02 20:02:29 +01:00
18 lines
256 B
Makefile
18 lines
256 B
Makefile
|
|
SRCS = d3des.c vncauth.c
|
|
|
|
OBJS = d3des.o vncauth.o
|
|
|
|
DIR_CPPFLAGS = -I$(top_srcdir)
|
|
|
|
library = librfb.a
|
|
|
|
all:: $(library)
|
|
|
|
$(library): $(OBJS)
|
|
rm -f $(library)
|
|
$(AR) $(library) $(OBJS)
|
|
$(RANLIB) $(library)
|
|
|
|
# followed by boilerplate.mk
|