mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-01-06 21:28:11 -05:00
25 lines
299 B
Makefile
25 lines
299 B
Makefile
|
|
||
|
RS_TOP_DIR = ..
|
||
|
include ../make.opt
|
||
|
|
||
|
OBJ = notifytxt.o retroshare.o
|
||
|
|
||
|
TESTS =
|
||
|
|
||
|
all : $(OBJ) retroshare-nogui
|
||
|
|
||
|
retroshare-nogui: $(OBJ)
|
||
|
$(CC) $(RSCFLAGS) -o retroshare-nogui $(OBJ) $(RSLIBS)
|
||
|
|
||
|
.cc.o:
|
||
|
$(CC) $(RSCFLAGS) -c $<
|
||
|
|
||
|
|
||
|
clean:
|
||
|
-/bin/rm $(OBJ)
|
||
|
|
||
|
clobber: clean
|
||
|
-/bin/rm retroshare-nogui
|
||
|
|
||
|
|