blob: 6f6ce2e66e7ba5ec9e3c943615026824f120cd4b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
TARGET_LIB = libos.a
all: $(TARGET_LIB)
include $(ROOTDIR)/common.mk
include config.mk
TARGET_SRCS = src/init.c
include $(ROOTDIR)/target-rules.mk
clean: clean-generic
|