diff options
author | Vito Caputo <vcaputo@gnugeneration.com> | 2016-09-01 09:14:34 -0700 |
---|---|---|
committer | Vito Caputo <vcaputo@gnugeneration.com> | 2016-09-09 14:17:02 -0700 |
commit | c42f6bb219a0af0d88dd3a66c605097b43566fb2 (patch) | |
tree | 50ca218005138f43317fff67a3755882a51ea004 /Makefile | |
parent | 4642216f70dd98134a79f9299b7ca4bc876649c7 (diff) |
build: Adopt GNU automake (and thus autotools)
Trying this out now that there's a pile of files... sigh.
Note this spuriously duplicates list.h @ src/libvmon/list.h, the old Makefile
shared list.h between vwm and libvmon, but I'm letting them have their own
instances with autotools. Libvmon was always an independent project I just
pulled in for vwm's use, and will likely continue to be developed independent
of vwm with occasional syncs.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/Makefile b/Makefile deleted file mode 100644 index 3da6819..0000000 --- a/Makefile +++ /dev/null @@ -1,30 +0,0 @@ -CFLAGS=-O2 -D_GNU_SOURCE #-g - -vwm: libvmon/vmon.o \ - vwm.c \ - vwm.h \ - list.h \ - colors.def \ - launchers.def \ - Makefile - $(CC) $(CFLAGS) -Wall -o vwm vwm.c -I. libvmon/vmon.o -lX11 -lXext -lXinerama -lXrandr -lXcomposite -lXdamage -lXrender -lXfixes #-DTRACE - -libvmon/vmon.o: Makefile \ - list.h \ - libvmon/bitmap.h \ - libvmon/vmon.h \ - libvmon/vmon.c \ - libvmon/defs/_begin.def \ - libvmon/defs/_end.def \ - libvmon/defs/sys_stat.def \ - libvmon/defs/sys_vm.def \ - libvmon/defs/proc_stat.def \ - libvmon/defs/proc_vm.def \ - libvmon/defs/proc_io.def \ - libvmon/defs/proc_files.def \ - libvmon/defs/sys_wants.def \ - libvmon/defs/proc_wants.def - $(CC) $(CFLAGS) -c -o libvmon/vmon.o libvmon/vmon.c -I. -Ilibvmon - -clean: - rm -f vwm libvmon/vmon.o |