1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 13:57:35 +00:00

HackStudio: Start working on an IDE for SerenityOS

This will be fun. :^)
This commit is contained in:
Andreas Kling 2019-10-21 18:46:55 +02:00
parent 74bba649c3
commit 0311e8d50a
6 changed files with 157 additions and 0 deletions

View file

@ -0,0 +1,23 @@
include ../../Makefile.common
OBJS = \
Project.o \
main.o
APP = HackStudio
DEFINES += -DUSERLAND
all: $(APP)
$(APP): $(OBJS)
$(LD) -o $(APP) $(LDFLAGS) $(OBJS) -lgui -ldraw -lcore -lc
.cpp.o:
@echo "CXX $<"; $(CXX) $(CXXFLAGS) -o $@ -c $<
-include $(OBJS:%.o=%.d)
clean:
@echo "CLEAN"; rm -f $(APP) $(OBJS) *.d