mirror of
https://github.com/RGBCube/serenity
synced 2025-07-28 04:57:45 +00:00
RetroFetch: Add a silly neofetch-like program.
The idea is to print out various system info suitable for screenshots. :^)
This commit is contained in:
parent
43604bf71a
commit
b7166385de
6 changed files with 119 additions and 0 deletions
21
Demos/RetroFetch/Makefile
Normal file
21
Demos/RetroFetch/Makefile
Normal file
|
@ -0,0 +1,21 @@
|
|||
include ../../Makefile.common
|
||||
|
||||
OBJS = main.o
|
||||
|
||||
APP = RetroFetch
|
||||
|
||||
DEFINES += -DUSERLAND
|
||||
|
||||
all: $(APP)
|
||||
|
||||
$(APP): $(OBJS)
|
||||
$(LD) -o $(APP) $(LDFLAGS) $(OBJS) -lc
|
||||
|
||||
.cpp.o:
|
||||
@echo "CXX $<"; $(CXX) $(CXXFLAGS) -o $@ -c $<
|
||||
|
||||
-include $(OBJS:%.o=%.d)
|
||||
|
||||
clean:
|
||||
@echo "CLEAN"; rm -f $(APP) $(OBJS) *.d
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue