mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-05 10:16:49 +07:00
12 lines
152 B
Makefile
12 lines
152 B
Makefile
|
OBJ = built-in.o
|
||
|
|
||
|
OBJS =
|
||
|
|
||
|
all: $(OBJ)
|
||
|
|
||
|
$(OBJ): $(OBJS)
|
||
|
rm -f $@
|
||
|
$(LD) $(LINKFLAGS) --start-group $^ --end-group -o $@
|
||
|
|
||
|
clean-files := $(OBJS) link.ld
|