Add test for compilation of libust against a shared library
[ust.git] / tests / make_shared_lib / Makefile
diff --git a/tests/make_shared_lib/Makefile b/tests/make_shared_lib/Makefile
new file mode 100644 (file)
index 0000000..7c56a73
--- /dev/null
@@ -0,0 +1,21 @@
+#all: libbasic.so prog libbasic-noscript.so prog_noscript
+all: libbasic.so prog
+
+libbasic.so: basic_lib.o
+       gcc -g $(LDFLAGS) -fPIC -o libbasic.so -shared -lust basic_lib.o
+libbasic-noscript.so: basic_lib_noscript.o
+       gcc -g $(LDFLAGS) -fPIC -o libbasic-noscript.so -shared basic_lib_noscript.o /usr/local/lib/libust.so.0 /usr/local/lib/libust-initializer.o
+
+basic_lib.o: basic_lib.c
+       gcc -g $(CFLAGS) -DCONFIG_UST_GDB_INTEGRATION -fPIC -c basic_lib.c
+basic_lib_noscript.o: basic_lib.c
+       gcc -g -DCONFIG_UST_GDB_INTEGRATION -fPIC -o basic_lib_noscript.o -c basic_lib.c
+
+prog: prog.c
+       gcc -g -DCONFIG_UST_GDB_INTEGRATION $(CFLAGS) $(LDFLAGS) -o prog -L . -lbasic -lust prog.c
+prog_noscript: prog.c
+       gcc -g -DCONFIG_UST_GDB_INTEGRATION -o prog_noscript -L . -lbasic-noscript prog.c /usr/local/lib/libust.so.0 /usr/local/lib/libust-initializer.o
+
+.PHONY: clean
+clean:
+       rm -f basic_lib.o libbasic.so prog basic_lib_noscript.o libbasic-noscript.so
This page took 0.02279 seconds and 4 git commands to generate.