diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-02-10 11:07:13 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-02-10 11:07:13 +0100 |
commit | 2def3d8d3ff3c913919cd64b2bf75b77ee57d1cf (patch) | |
tree | b4e92858629468605876ef0e9c48e9391019843e /Applications/FileManager/Makefile | |
parent | 2cf1dd5b6f10b898f24203c879290d665531a989 (diff) | |
download | serenity-2def3d8d3ff3c913919cd64b2bf75b77ee57d1cf.zip |
LibGUI: Start adding an automatic widget layout system.
My needs are really quite simple, so I'm just going to add what I need
as I go along. The first thing I needed was a simple box layout with
widgets being able to say whether they prefer fixed or fill for both
their vertical and horizontal sizes.
I also made a simple GStatusBar so FileManager can show how many bytes
worth of files are in the current directory.
Diffstat (limited to 'Applications/FileManager/Makefile')
-rw-r--r-- | Applications/FileManager/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Applications/FileManager/Makefile b/Applications/FileManager/Makefile index 1fd1842e8e..f41a35cfca 100644 --- a/Applications/FileManager/Makefile +++ b/Applications/FileManager/Makefile @@ -23,7 +23,7 @@ LDFLAGS = -static --strip-debug -melf_i386 -e _start --gc-sections all: $(APP) $(APP): $(OBJS) - $(LD) -o $(APP) $(LDFLAGS) $(OBJS) ../LibGUI/LibGUI.a ../LibC/LibC.a + $(LD) -o $(APP) $(LDFLAGS) $(OBJS) ../../LibGUI/LibGUI.a ../../LibC/LibC.a .cpp.o: @echo "CXX $<"; $(CXX) $(CXXFLAGS) -o $@ -c $< |