mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
27 lines
394 B
Makefile
27 lines
394 B
Makefile
|
|
||
|
RS_TOP_DIR = ..
|
||
|
include ../make.opt
|
||
|
|
||
|
OBJ = upnphandler.o upnputil.o
|
||
|
|
||
|
CFLAGS += -I$(UPNPC_DIR) -DMINIUPNP_EXPORTS
|
||
|
|
||
|
all : $(OBJ) librs upnptest
|
||
|
|
||
|
upnptest: $(OBJ) upnptest.o
|
||
|
$(CC) $(CFLAGS) -o upnptest $(OBJ) upnptest.o $(RSLIBS)
|
||
|
|
||
|
librs: $(OBJ)
|
||
|
$(AR) r $(LIBRS) $(OBJ)
|
||
|
$(RANLIB) $(LIBRS)
|
||
|
|
||
|
.cc.o:
|
||
|
$(CC) $(CFLAGS) -c $<
|
||
|
|
||
|
clean:
|
||
|
-/bin/rm $(OBJ) upnptest.o
|
||
|
|
||
|
clobber: clean
|
||
|
-/bin/rm upnptest
|
||
|
|