comparison 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
comparison
equal deleted inserted replaced
664:87ef546de419 665:23d16d9cdf96
2 # Configuration settings for Linux and generic UNIX 2 # Configuration settings for Linux and generic UNIX
3 # See other Makefile.* files for more options. 3 # See other Makefile.* files for more options.
4 # 4 #
5 5
6 # C-compiler, flags and linker flags 6 # C-compiler, flags and linker flags
7 CC=gcc 7 CFLAGS = -DHAVE_STRING_H -DHAVE_STDINT_H -DUSE_XDG=1
8 AR=ar 8 LDFLAGS = -lncurses
9 RANLIB=ranlib
10
11 CFLAGS=-DHAVE_STRING_H -DHAVE_STDINT_H -DUSE_XDG=1
12 LDFLAGS=-lncurses
13 9
14 #CFLAGS += -DHAVE_STDINT_H 10 #CFLAGS += -DHAVE_STDINT_H
15 #CFLAGS += -DHAVE_SYS_TYPES_H 11 #CFLAGS += -DHAVE_SYS_TYPES_H
16 12
17 # Miscellaneous 13 include Makefile.unix
18 BINPATH=
19 OBJPATH=obj/unix/
20 EXEEXT=
21 DOC=README
22
23 include Makefile.gen