feat: MontaukOS installer app, toml config, app directory with manifests, and more
This commit is contained in:
@@ -76,14 +76,14 @@ OBJS := $(addprefix $(OBJDIR)/,$(SRCS:.cpp=.o))
|
||||
|
||||
# ---- Target ----
|
||||
|
||||
TARGET := $(BINDIR)/os/weather.elf
|
||||
TARGET := $(BINDIR)/apps/weather/weather.elf
|
||||
|
||||
.PHONY: all clean
|
||||
|
||||
all: $(TARGET)
|
||||
|
||||
$(TARGET): $(OBJS) $(LIBS) $(LINK_LD) Makefile
|
||||
mkdir -p $(BINDIR)/os
|
||||
mkdir -p $(BINDIR)/apps/weather
|
||||
$(CXX) $(CXXFLAGS) $(LDFLAGS) $(OBJS) $(LIBS) -o $@
|
||||
|
||||
$(OBJDIR)/%.o: %.cpp Makefile
|
||||
|
||||
@@ -0,0 +1,8 @@
|
||||
[app]
|
||||
name = "Weather"
|
||||
binary = "weather.elf"
|
||||
icon = "weather-widget.svg"
|
||||
|
||||
[menu]
|
||||
category = "Internet"
|
||||
visible = true
|
||||
Reference in New Issue
Block a user