| Server IP : 43.141.49.107 / Your IP : 113.219.202.141 Web Server : Apache System : Linux VM-8-5-opencloudos 6.6.34-9.oc9.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jun 19 19:35:45 CST 2024 x86_64 User : www ( 1000) PHP Version : 8.1.27 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /usr/share/vala/ |
Upload File : |
# Makefile for Vala API Generator (vapigen) # Written by Evan Nemerson # # The author disclaims copyright to this source code. In place of # a legal notice, here is a blessing: # # May you do good and not evil. # May you find forgiveness for yourself and forgive others. # May you share freely, never taking more than you give. # # See http://live.gnome.org/Vala/UpstreamGuide for detailed documentation # # Variables: # # VAPIGEN_FILES # # VAPIs to create # # *_DEPS / VAPIGEN_DEPS # # The dependencies. Generally the pkg-config names. # # *_METADATADIRS / VAPIGEN_METADATADIRS # # Directory containing the metadata. # # *_VAPIDIRS / VAPIGEN_VAPIDIRS # # Additional location(s) to search for VAPI dependencies. # # *_GIRDIRS / VAPIGEN_GIRDIRS # # Additional location(s) to search for GIR dependencies. # # *_FILES # # The files which should be used to generate the VAPI. _vapigen_silent_prefix = $(_vapigen_silent_prefix_$(V)) _vapigen_silent_prefix_ = $(_vapigen_silent_prefix_$(AM_DEFAULT_VERBOSITY)) _vapigen_silent_prefix_0 = @echo " VAPIGEN $(1)"; _vapigen_silent_opts = $(_vapigen_silent_opts_$(V)) _vapigen_silent_opts_ = $(_vapigen_silent_opts_$(AM_DEFAULT_VERBOSITY)) _vapigen_silent_opts_0 = --quiet $(if $(VAPIGEN),,$(error You must define VAPIGEN)) _vapi_name = $(subst /,_,$(subst -,_,$(subst .,_,$(1)))) define vapigen $(1): $$($(_vapi_name)_GIR) $(_vapigen_silent_prefix) $(VAPIGEN) $(_vapigen_silent_opts) \ --library $(1:.vapi=) \ $(foreach _vapi_metadatadir_name,$(if $($(_vapi_name)_METADATADIRS),$($(_vapi_name)_METADATADIRS),$(VAPIGEN_METADATADIRS)),--metadatadir $(_vapi_metadatadir_name)) \ $(foreach _vapi_dir_name,$(if $($(_vapi_name)_VAPIDIRS),$($(_vapi_name)_VAPIDIRS),$(VAPIGEN_VAPIDIRS)),--vapidir $(_vapi_dir_name)) \ $(foreach _gir_dir_name,$(if $($(_vapi_name)_GIRDIRS),$($(_vapi_name)_GIRDIRS),$(VAPIGEN_GIRDIRS)),--girdir $(_gir_dir_name)) \ $(foreach _vapi_dep_name,$(if $($(_vapi_name)_DEPS),$($(_vapi_name)_DEPS),$(VAPIGEN_DEPS)),--pkg $(_vapi_dep_name)) \ $$($(_vapi_name)_FILES) endef $(foreach vapi,$(VAPIGEN_VAPIS),$(eval $(call vapigen,$(vapi))))