new makefile

This commit is contained in:
cozis
2023-10-31 16:09:51 +01:00
parent 7033e1ea85
commit b495e53891
42 changed files with 1648 additions and 434 deletions
+42
View File
@@ -0,0 +1,42 @@
#ifndef TUNTAP_EXPORT_H
#define TUNTAP_EXPORT_H
#ifdef TUNTAP_STATIC_DEFINE
# define TUNTAP_EXPORT
# define TUNTAP_NO_EXPORT
#else
# ifndef TUNTAP_EXPORT
# ifdef tuntap_EXPORTS
/* We are building this library */
# define TUNTAP_EXPORT
# else
/* We are using this library */
# define TUNTAP_EXPORT
# endif
# endif
# ifndef TUNTAP_NO_EXPORT
# define TUNTAP_NO_EXPORT
# endif
#endif
#ifndef TUNTAP_DEPRECATED
# define TUNTAP_DEPRECATED __attribute__ ((__deprecated__))
#endif
#ifndef TUNTAP_DEPRECATED_EXPORT
# define TUNTAP_DEPRECATED_EXPORT TUNTAP_EXPORT TUNTAP_DEPRECATED
#endif
#ifndef TUNTAP_DEPRECATED_NO_EXPORT
# define TUNTAP_DEPRECATED_NO_EXPORT TUNTAP_NO_EXPORT TUNTAP_DEPRECATED
#endif
#if 0 /* DEFINE_NO_DEPRECATED */
# ifndef TUNTAP_NO_DEPRECATED
# define TUNTAP_NO_DEPRECATED
# endif
#endif
#endif /* TUNTAP_EXPORT_H */