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.

Makefile.in 635B

123456789101112131415161718192021222324
  1. SRCS = vncExt.c vncconfig.cxx QueryConnectDialog.cxx
  2. OBJS = vncExt.o vncconfig.o QueryConnectDialog.o
  3. program = vncconfig
  4. DEP_LIBS = $(TOP)/tx/libtx.a $(COMMON)/rfb/librfb.a \
  5. $(COMMON)/network/libnetwork.a \
  6. $(COMMON)/rdr/librdr.a
  7. EXTRA_LIBS = @X_PRE_LIBS@ @X_LIBS@ -lX11 -lXext @X_EXTRA_LIBS@
  8. DIR_CPPFLAGS = -I$(COMMON) -I$(TOP)/tx @X_CFLAGS@ # X_CFLAGS are really CPPFLAGS
  9. all:: $(program)
  10. $(program): $(OBJS) buildtime.o $(DEP_LIBS)
  11. rm -f $(program)
  12. $(CXXLD) $(CXXFLAGS) $(LDFLAGS) -o $@ $(OBJS) buildtime.o $(DEP_LIBS) $(LIBS) $(EXTRA_LIBS)
  13. buildtime.o: $(OBJS) $(DEP_LIBS)
  14. # followed by boilerplate.mk