forked from enlightenment/efl
please check and report problems (not cosmetic ones) someone should update the efl.spec.in file, i don't know that stuff SVN revision: 78512devs/devilhorns/wayland_egl
parent
124e0d4afd
commit
5bdb5d3763
42 changed files with 326 additions and 108 deletions
@ -0,0 +1,6 @@ |
||||
MAINTAINERCLEANFILES = Makefile.in
|
||||
|
||||
filesdir = $(pkgdatadir)/include
|
||||
files_DATA = embryo/default.inc
|
||||
|
||||
EXTRA_DIST = $(files_DATA)
|
@ -0,0 +1,49 @@ |
||||
|
||||
MAINTAINERCLEANFILES = Makefile.in
|
||||
|
||||
AM_CPPFLAGS = \
|
||||
-I$(top_srcdir)/src/lib/eina \ |
||||
-I$(top_srcdir)/src/lib/embryo \ |
||||
-I$(top_builddir)/src/lib/eina \ |
||||
-I$(top_builddir)/src/lib/embryo \ |
||||
-DPACKAGE_BIN_DIR=\"$(bindir)\" \
|
||||
-DPACKAGE_LIB_DIR=\"$(libdir)\" \
|
||||
-DPACKAGE_DATA_DIR=\"$(datadir)/$(PACKAGE)\" \
|
||||
@EFL_CFLAGS@ |
||||
|
||||
if HAVE_WINDOWS |
||||
AM_CPPFLAGS += \
|
||||
-I$(top_srcdir)/src/lib/evil \ |
||||
-I$(top_builddir)/src/lib/evil |
||||
endif |
||||
|
||||
bin_PROGRAMS = embryo_cc
|
||||
|
||||
embryo_cc_SOURCES = \
|
||||
embryo_cc_amx.h \ |
||||
embryo_cc_sc.h \ |
||||
embryo_cc_sc1.c \ |
||||
embryo_cc_sc2.c \ |
||||
embryo_cc_sc3.c \ |
||||
embryo_cc_sc4.c \ |
||||
embryo_cc_sc5.c \ |
||||
embryo_cc_sc6.c \ |
||||
embryo_cc_sc7.c \ |
||||
embryo_cc_scexpand.c \ |
||||
embryo_cc_sclist.c \ |
||||
embryo_cc_scvars.c \ |
||||
embryo_cc_prefix.c \ |
||||
embryo_cc_prefix.h |
||||
|
||||
embryo_cc_LDADD = \
|
||||
$(top_builddir)/src/lib/embryo/libembryo.la \ |
||||
$(top_builddir)/src/lib/eina/libeina.la \ |
||||
-lm |
||||
|
||||
if HAVE_WINDOWS |
||||
embryo_cc_LDADD += $(top_builddir)/src/lib/evil/libevil.la
|
||||
endif |
||||
|
||||
EXTRA_DIST = \
|
||||
embryo_cc_sc5.scp \ |
||||
embryo_cc_sc7.scp |
@ -0,0 +1,38 @@ |
||||
|
||||
MAINTAINERCLEANFILES = Makefile.in
|
||||
|
||||
AM_CPPFLAGS = \
|
||||
-I$(top_srcdir)/src/lib/eina \ |
||||
-I$(top_builddir)/src/lib/eina \ |
||||
-DPACKAGE_BIN_DIR=\"$(bindir)\" \
|
||||
-DPACKAGE_LIB_DIR=\"$(libdir)\" \
|
||||
-DPACKAGE_DATA_DIR=\"$(datadir)/$(PACKAGE)\" \
|
||||
-DEFL_EMBRYO_BUILD \ |
||||
@EFL_CFLAGS@ |
||||
|
||||
if HAVE_WINDOWS |
||||
AM_CPPFLAGS += \
|
||||
-I$(top_srcdir)/src/lib/evil \ |
||||
-I$(top_builddir)/src/lib/evil |
||||
endif |
||||
|
||||
includes_HEADERS = Embryo.h
|
||||
includesdir = $(includedir)/embryo-@VMAJ@
|
||||
|
||||
lib_LTLIBRARIES = libembryo.la
|
||||
|
||||
libembryo_la_SOURCES = \
|
||||
embryo_amx.c \ |
||||
embryo_args.c \ |
||||
embryo_float.c \ |
||||
embryo_main.c \ |
||||
embryo_rand.c \ |
||||
embryo_str.c \ |
||||
embryo_time.c \ |
||||
embryo_private.h |
||||
|
||||
libembryo_la_LIBADD = $(top_builddir)/src/lib/eina/libeina.la -lm
|
||||
if HAVE_WINDOWS |
||||
libembryo_la_LIBADD += $(top_builddir)/src/lib/evil/libevil.la
|
||||
endif |
||||
libembryo_la_LDFLAGS = -no-undefined -version-info @version_info@ @release_info@
|
@ -1,14 +1,6 @@ |
||||
#ifndef _EMBRYO_PRIVATE_H |
||||
#define _EMBRYO_PRIVATE_H |
||||
|
||||
|
||||
#ifdef __GNUC__ |
||||
# if __GNUC__ >= 4 |
||||
// BROKEN in gcc 4 on amd64
|
||||
//# pragma GCC visibility push(hidden)
|
||||
# endif |
||||
#endif |
||||
|
||||
typedef enum _Embryo_Opcode Embryo_Opcode; |
||||
|
||||
enum _Embryo_Opcode |
Loading…
Reference in new issue