From c42f6bb219a0af0d88dd3a66c605097b43566fb2 Mon Sep 17 00:00:00 2001 From: Vito Caputo Date: Thu, 1 Sep 2016 09:14:34 -0700 Subject: 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. --- Makefile | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 Makefile (limited to 'Makefile') 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 -- cgit v1.2.3