mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-01-03 11:51:10 -05:00
24 lines
282 B
Makefile
24 lines
282 B
Makefile
|
|
||
|
# defines required / used.
|
||
|
#
|
||
|
# CFLAGS
|
||
|
#
|
||
|
#
|
||
|
|
||
|
librs: $(RSOBJ)
|
||
|
$(AR) r $(LIBRS) $(RSOBJ)
|
||
|
$(RANLIB) $(LIBRS)
|
||
|
|
||
|
.cc.o:
|
||
|
$(CC) $(CFLAGS) -c $<
|
||
|
|
||
|
clean:
|
||
|
-/bin/rm $(RSOBJ) $(EXECOBJ) $(TESTOBJ)
|
||
|
|
||
|
clobber: clean retest
|
||
|
-/bin/rm $(EXEC) $(TESTS)
|
||
|
|
||
|
|
||
|
include $(RS_TOP_DIR)/scripts/regress.mk
|
||
|
|