Files
Charles Zablit 49ef440525 [lldb] replace usage of $(RM) in Makefile (#180755)
This patch replaces the usages of `$(RM)` with cross platform `$(call
RM,...)` calls which was added in
https://github.com/llvm/llvm-project/pull/180224.
2026-02-12 14:54:33 +01:00

28 lines
759 B
Makefile

C_SOURCES := main.c a.c b.c c.c
EXE := # Define a.out explicitly
MAKE_DSYM := NO
all: a.out
a.out: main.o libfoo.a
$(LD) $(LDFLAGS) $^ -o $@
lib_ab.a: a.o b.o
$(AR) $(ARFLAGS) $@ $^
$(call RM,$^)
# Here we make a .a file that has two a.o files with different modification
# times and different content by first creating libfoo.a with only a.o and b.o,
# then we sleep for 2 seconds, touch c.o to ensure it has a different
# modification time, and then rename c.o to a.o and then add it to the .a file
# again. This is to help test that the module cache will create different
# directories for the two different a.o files.
libfoo.a: lib_ab.a c.o
sleep 2
touch c.o
mv c.o a.o
$(AR) $(ARFLAGS) $@ lib_ab.a a.o
$(call RM,a.o)
include Makefile.rules