- Update all .pc files
* Fix 'pf d*' segfault
- Show flag references in all 'pf' values
* Many bugfixes in vapis
- Use nested namespaces instead of static classes
- Static classes was deprecated in Vala some years ago
- All bindings are working again
- C++ support has been added
- Guile is now compiled by default
* Added ./configure-langs to select which langs to use
- Use --enable=python,perl or --disable=guile
18 lines
296 B
Makefile
18 lines
296 B
Makefile
NAME=r_cmd
|
|
OBJ=cmd.o plugin.o macro.o
|
|
DEPS=r_util r_lib
|
|
|
|
include ../config.mk
|
|
|
|
CFLAGS+=-DCORELIB
|
|
|
|
foo: ${LIBSO} ${LIBAR} plugins
|
|
|
|
include ${STATIC_CMD_PLUGINS}
|
|
STATIC_OBJS=$(subst ..,p/..,$(subst cmd_,p/cmd_,$(STATIC_OBJ)))
|
|
OBJ+=${STATIC_OBJS}
|
|
|
|
plugins:
|
|
cd p && ${MAKE} all
|
|
|
|
include ../rules.mk
|