comparison Makefile.openbsd @ 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 7ba4e371e9a6
children
comparison
equal deleted inserted replaced
664:87ef546de419 665:23d16d9cdf96
1 # 1 #
2 # Configuration settings for Linux and generic UNIX 2 # OpenBSD configuration settings
3 # See other Makefile.* files for more options.
4 # 3 #
5 4
6 # C-compiler, flags and linker flags 5 # C-compiler, flags and linker flags
7 CC=gcc 6 CC=gcc
8 CFLAGS=-DHAVE_STRING_H -DHAVE_INT_TYPES -DHAVE_NETINET_IN_H -DHAVE_NCURSES_H 7 CFLAGS=-DHAVE_STRING_H -DHAVE_INT_TYPES -DHAVE_NETINET_IN_H -DHAVE_NCURSES_H
9 LDFLAGS=-lncurses 8 LDFLAGS=-lncurses
10 9
11 #CFLAGS += -DHAVE_STDINT_H
12 #CFLAGS += -DHAVE_SYS_TYPES_H
13 10
14 # Miscellaneous 11 include Makefile.unix
15 BINPATH=
16 OBJPATH=
17 EXEEXT=
18
19
20 include Makefile.gen