File: makefile-dynamiclinking

package info (click to toggle)
fsmark 3.3-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster
  • size: 192 kB
  • sloc: ansic: 1,146; makefile: 100
file content (14 lines) | stat: -rw-r--r-- 457 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
Description: Change makefile to link the executable dynamically.
 This patch changes the makefile to link the executable dynamically.
Author: Martin Steigerwald <ms@teamix.de>
--- a/Makefile
+++ b/Makefile
@@ -20,7 +20,7 @@
 fs_mark.o: fs_mark.c fs_mark.h
 
 fs_mark: fs_mark.o lib_timing.o
-	${CC} ${CFLAGS} ${LDFLAGS} -static -o fs_mark fs_mark.o lib_timing.o
+	${CC} ${CFLAGS} ${LDFLAGS} -o fs_mark fs_mark.o lib_timing.o
 
 install:
 	install -d $(BIN)