mirror of
https://github.com/intel/llvm.git
synced 2026-01-13 11:02:04 +08:00
added getName method in SBModule.h and .cpp in order to get the name of the module from m_object_name. --------- Co-authored-by: Bar Soloveychik <barsolo@fb.com>
13 lines
175 B
Makefile
13 lines
175 B
Makefile
C_SOURCES := main.c a.c b.c
|
|
MAKE_DSYM := NO
|
|
|
|
all: a.out
|
|
|
|
a.out: main.o libfoo.a
|
|
$(LD) $(LDFLAGS) $^ -o $@
|
|
|
|
libfoo.a: a.o b.o
|
|
$(AR) $(ARFLAGS) $@ $^
|
|
|
|
include Makefile.rules
|