xref: /third_party/libabigail/tests/data/test-symtab/basic/Makefile (revision e01aa904)
  • Home
  • History
  • Annotate
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
  • only in /third_party/libabigail/tests/data/test-symtab/basic/
1srcs = $(wildcard *.c)
2libs = $(srcs:.c=.so)
3
4flags = -fPIC
5
6all:	$(libs)
7
8clean:
9	rm $(libs)
10
11no_debug_info.so: no_debug_info.c Makefile
12	$(CC) $< -shared $(flags) -o $@
13
14link_against_me.so: link_against_me.c
15	$(CC) $< -shared $(flags) -o $@
16
17%.so: %.c Makefile link_against_me.so
18	$(CC) $< -shared $(flags) -g -o $@ link_against_me.so
19
20

Indexes created Thu Nov 07 10:32:03 CST 2024