mirror of
https://github.com/clearlinux/graphene.git
synced 2026-09-05 21:31:36 +00:00
25 lines
451 B
Makefile
25 lines
451 B
Makefile
include ../../Scripts/Makefile.configs
|
|
include ../../Scripts/Makefile.rules
|
|
|
|
files_to_build += user_start.o user_shared_start.o
|
|
|
|
.PHONY: all test
|
|
all: $(files_to_build)
|
|
test:
|
|
|
|
user_start.o: user_start-$(ARCH).S
|
|
$(call cmd,as_o_S)
|
|
|
|
ASFLAGS-user_shared_start.o = -DSHARED -fPIC
|
|
user_shared_start.o: user_start-$(ARCH).S
|
|
$(call cmd,as_o_S)
|
|
|
|
include $(wildcard *.d)
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
$(RM) $(files_to_build) *.d
|
|
|
|
.PHONY: distclean
|
|
distclean: clean
|