diff options
author | Vito Caputo <vcaputo@gnugeneration.com> | 2014-09-14 06:09:18 -0700 |
---|---|---|
committer | Vito Caputo <vcaputo@gnugeneration.com> | 2014-09-14 06:09:18 -0700 |
commit | a4430b79845c0c5417b8725a4272f91e04d42349 (patch) | |
tree | e9c7ed2b889355a82dcfcd958acabe30b5d00aa3 /Makefile |
Initial import of vwm1 from published source tgz
- Basic window management, window resizing, virtual desktops and shelf
implementation
- Simple double fork execution of launched clients
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..f31737e --- /dev/null +++ b/Makefile @@ -0,0 +1,5 @@ +vwm: vwm.c vwm.h list.h colors.def launchers.def Makefile + $(CC) -Wall -o vwm vwm.c -lX11 #-g -DTRACE + +clean: + rm -f vwm |