You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
671 B
20 lines
671 B
Index: GNUmakefile.in |
|
--- GNUmakefile.in.orig 2010-04-09 23:10:13.000000000 +0200 |
|
+++ GNUmakefile.in 2010-04-13 23:27:23.000000000 +0200 |
|
@@ -46,13 +46,13 @@ |
|
@if [ "${NETTLE_L}" = "no" ]; then echo "WARNING: ** No nettle library found; rdup-tr has no encryption"; fi |
|
|
|
rdup-up: $(OBJ_UP) $(HDR) |
|
- ${GCC} ${OBJ_UP} ${GLIB_LIBS} ${LIBS} -o rdup-up |
|
+ ${GCC} ${OBJ_UP} -o rdup-up ${GLIB_LIBS} ${LIBS} |
|
|
|
rdup-tr: $(OBJ_TR) $(HDR) |
|
- ${GCC} ${OBJ_TR} ${GLIB_LIBS} ${LIBS} -o rdup-tr |
|
+ ${GCC} ${OBJ_TR} -o rdup-tr ${GLIB_LIBS} ${LIBS} |
|
|
|
rdup: ${OBJ} ${HDR} |
|
- ${GCC} ${OBJ} ${GLIB_LIBS} ${LIBS} -o rdup |
|
+ ${GCC} -o rdup ${OBJ} ${GLIB_LIBS} ${LIBS} |
|
|
|
strip: |
|
strip ${CMD}
|
|
|