mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-10 15:20:10 +00:00
26 lines
773 B
Makefile
26 lines
773 B
Makefile
|
/* Might as well be -*- C -*-.
|
||
|
|
||
|
This generates a makefile that sets the variable pairs
|
||
|
nacl-MODULE-mandatory-interfaces and nacl-MODULE-optional-interfaces
|
||
|
based on the nacl-interface-list.h list. */
|
||
|
|
||
|
%define NACL_MANDATORY_INTERFACE(module, id, type) \
|
||
|
nacl-mandatory-interfaces += module-type
|
||
|
%define NACL_OPTIONAL_INTERFACE(module, id, type) \
|
||
|
nacl-optional-interfaces += module-type
|
||
|
|
||
|
%include "nacl-interface-list.h"
|
||
|
|
||
|
%undef NACL_MANDATORY_INTERFACE
|
||
|
%undef NACL_OPTIONAL_INTERFACE
|
||
|
|
||
|
%define NACL_MANDATORY_INTERFACE(module, id, type) \
|
||
|
nacl-module-type-string := id
|
||
|
%define NACL_OPTIONAL_INTERFACE(module, id, type) \
|
||
|
nacl-module-type-string := id
|
||
|
|
||
|
%include "nacl-interface-list.h"
|
||
|
|
||
|
%undef NACL_MANDATORY_INTERFACE
|
||
|
%undef NACL_OPTIONAL_INTERFACE
|