ltrc.inc 645 B

1234567891011121314151617181920212223
  1. #
  2. # OpenVPN -- An application to securely tunnel IP networks
  3. # over a single UDP port, with support for SSL/TLS-based
  4. # session authentication and key exchange,
  5. # packet encryption, packet authentication, and
  6. # packet compression.
  7. #
  8. # Copyright (C) 2008-2012 Alon Bar-Lev <alon.barlev@gmail.com>
  9. #
  10. # Required to build Windows resource file
  11. RCCOMPILE = $(RC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
  12. $(AM_CPPFLAGS) $(CPPFLAGS)
  13. LTRCCOMPILE = $(LIBTOOL) --mode=compile --tag=RC $(RCCOMPILE)
  14. .rc.lo:
  15. $(LTRCCOMPILE) -i "$<" -o "$@"
  16. .rc.o:
  17. $(RCCOMPILE) -i "$<" -o "$@"
  18. .mc.rc:
  19. $(WINDMC) "$<"