Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Makefile tweaks for FBSD again. There must be a better way to do this. |
---|---|
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
38b964f154d17ca9b1fc6ae1d467ab9a |
User & Date: | dbane 2014-02-23 17:49:28.150 |
Context
2014-05-09
| ||
22:02 | Switch to Doxygen OO-in-C convention check-in: 1620d60a3d user: darrenbane tags: trunk | |
2014-02-23
| ||
17:49 | Makefile tweaks for FBSD again. There must be a better way to do this. check-in: 38b964f154 user: dbane tags: trunk | |
2014-02-21
| ||
20:44 | Switch from str* to strl* functions check-in: e699791909 user: darrenbane tags: trunk | |
Changes
Changes to src/Makefile.
1 2 | .POSIX: | | | | | | > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | .POSIX: BINOWN= dbane BINGRP= dbane SHAREOWN= dbane SHAREGRP= dbane .include <bsd.own.mk> PREFIX?= /home/dbane BINDIR= $(PREFIX)/bin MANDIR= $(PREFIX)/man/man PROG= lbl # Need _DARWIN_C_SOURCE for strlcpy/strlcat #CFLAGS+= -I../hdr -Wall -std=c11 -D_XOPEN_SOURCE=600 -D_DARWIN_C_SOURCE CFLAGS+= -I../hdr -Wall -std=c11 MAN= ../doc/lbl.1 SRCS= lbl.c actions.c build.c externs.c find.c keyword.c list.c \ printl.c rescan.c scan.c signals.c LIBC= /usr/lib/libSystem.dylib .include <bsd.prog.mk> |