mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-03 19:01:31 +00:00
15 lines
305 B
Makefile
15 lines
305 B
Makefile
SPPPATH=../../shlr/spp/
|
|
CFLAGS+=-DHAVE_FORK=$(HAVE_FORK)
|
|
SPP_OBJS=spp.o
|
|
SPPOBJS=$(addprefix ${SPPPATH},${SPP_OBJS})
|
|
OBJS+=$(SPPOBJS)
|
|
|
|
$(SPPPATH)/config.h: $(SPPPATH)/config.def.h
|
|
$(MAKE) spp_config
|
|
|
|
spp_config:
|
|
cp -f $(SPPPATH)/config.def.h $(SPPPATH)/config.h
|
|
$(MAKE) spp_build
|
|
|
|
spp_build: $(SPPOBJS)
|