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