diff Makefile @ 665:23d16d9cdf96

Work on the build system, split generic UNIX things into Makefile.unix
author Matti Hamalainen <ccr@tnsp.org>
date Fri, 12 Feb 2016 03:05:07 +0200
parents e862edb65b9d
children 3a3e4fc53ac7
line wrap: on
line diff
--- a/Makefile	Fri Feb 12 03:03:51 2016 +0200
+++ b/Makefile	Fri Feb 12 03:05:07 2016 +0200
@@ -4,20 +4,10 @@
 #
 
 # C-compiler, flags and linker flags
-CC=gcc
-AR=ar
-RANLIB=ranlib
-
-CFLAGS=-DHAVE_STRING_H -DHAVE_STDINT_H -DUSE_XDG=1
-LDFLAGS=-lncurses
+CFLAGS = -DHAVE_STRING_H -DHAVE_STDINT_H -DUSE_XDG=1
+LDFLAGS = -lncurses
 
 #CFLAGS += -DHAVE_STDINT_H
 #CFLAGS += -DHAVE_SYS_TYPES_H
 
-# Miscellaneous
-BINPATH=
-OBJPATH=obj/unix/
-EXEEXT=
-DOC=README
-
-include Makefile.gen
+include Makefile.unix