mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 03:37:45 +00:00
HackStudio: Start working on an IDE for SerenityOS
This will be fun. :^)
This commit is contained in:
parent
74bba649c3
commit
0311e8d50a
6 changed files with 157 additions and 0 deletions
23
DevTools/HackStudio/Makefile
Normal file
23
DevTools/HackStudio/Makefile
Normal 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
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue