summaryrefslogtreecommitdiff
path: root/Userland/Makefile
AgeCommit message (Expand)Author
2019-04-21Include Makefile.common in all other Makefiles.Andreas Kling
2019-04-20Get rid of SERENITY macro since the compiler already defines __serenity__Andreas Kling
2019-04-14Userland: Oops, that merge broke the build, just needed a few tweaks. :^)Andreas Kling
2019-04-14Userland: Maybe find is overkillNicolas Van Bossuyt
2019-04-14Userland: making the makefile smarterNicolas Van Bossuyt
2019-04-14Kernel: Add /proc/uptime file (number of seconds since boot.)Andreas Kling
2019-04-10Introduce LibCore and move GElapsedTimer => CElapsedTimer.Andreas Kling
2019-04-07Kernel+Userland: Add the rename() syscall along with a basic /bin/mv.Andreas Kling
2019-03-27LibC: Run constructors on process startup.Andreas Kling
2019-03-21WindowServer: Support PNG wallpapers.Andreas Kling
2019-03-21SharedGraphics: Implement a simple PNG decoder.Andreas Kling
2019-03-20LibC: Implement gethostbyname() by talking to the DNSLookupServer.Andreas Kling
2019-03-13Userland+LibC: Add a new little "tc" program for testing TCP.Andreas Kling
2019-03-13Userland: Add a simple utility for UDP testing.Andreas Kling
2019-03-12Kernel+LibC+Userland: Start working on an IPv4 socket backend.Andreas Kling
2019-02-27Userland: Add a simple /bin/stat program.Andreas Kling
2019-02-27Add chown() syscall and a simple /bin/chown program.Andreas Kling
2019-02-26More compat work. Rename libraries from LibFoo.a => libfoo.aAndreas Kling
2019-02-22Move over to building all of userspace with i686-pc-serenity-g++.Andreas Kling
2019-02-22Switch over to building everything with i686-elf-g++.Andreas Kling
2019-02-22Kernel: Pass process arguments directly on the stack.Andreas Kling
2019-02-21Kernel+Userland: Implement setuid() and setgid() and add /bin/suAndreas Kling
2019-02-21Add a simple /bin/df which gathers its info from /proc/df.Andreas Kling
2019-02-21Kernel: Add link() syscall to create hard links.Andreas Kling
2019-02-17Prune compiler flags a bit. Let's go with -march=i686 for now.Andreas Kling
2019-02-15Enable -Wimplicit-fallthrough.Andreas Kling
2019-02-14WindowServer: Convert entire API to be message-based.Andreas Kling
2019-02-08Userland: Add a /bin/pape helper program to switch the desktop wallpaper.Andreas Kling
2019-02-08Don't use -mregparm=3 in userspace.Andreas Kling
2019-02-06Clean up LDFLAGS a bit.Andreas Kling
2019-02-04Add a /bin/top program for process table monitoring.Andreas Kling
2019-02-02Add basic automatic dependency management to Makefiles.Andreas Kling
2019-01-29Implement basic chmod() syscall and /bin/chmod helper.Andreas Kling
2019-01-28Expose the kernel log buffer through /proc/dmesg.Andreas Kling
2019-01-28Add support for removing directories.Andreas Kling
2019-01-27Userland: Make a simple /bin/cp for copying files.Andreas Kling
2019-01-22Add unlink() syscall and /bin/rm.Andreas Kling
2019-01-20Start bringing up LibGUI properly (formerly Widgets.)Andreas Kling
2019-01-18Add a simple /bin/sysctl that wraps the files in /proc/sys.Andreas Kling
2019-01-13Start working on a GUI kernel API.Andreas Kling
2019-01-08Fix broken "make clean" in Userland.Andreas Kling
2018-12-21Add a simple /bin/more.Andreas Kling
2018-12-21Get rid of three test utilities that I no longer need.Andreas Kling
2018-12-20Add sync() syscall and a /bin/sync.Andreas Kling
2018-12-19Implement utime() along with a naive /bin/touch.Andreas Kling
2018-11-18Finally hook up the mkdir code to a syscall.Andreas Kling
2018-11-11Add a naive /bin/fgrep for testing pipes.Andreas Kling
2018-11-09Build LibC and Userland with clang as well.Andreas Kling
2018-11-07Rework process states to make a bit more sense.Andreas Kling
2018-11-06Add strsignal() and improve sharing signal numbers between LibC and kernel.Andreas Kling