mirror of
https://github.com/radareorg/radare2.git
synced 2025-01-01 02:33:50 +00:00
14 lines
272 B
Makefile
14 lines
272 B
Makefile
SPPPATH=../../shlr/spp/
|
|
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)
|