Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Add Makefile and config.mk
Probably overkill for such a tiny file, but good practice for me. |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | origin/master | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
fc1d33f903b0403467e7926cc803990c |
| User & Date: | atomicules@lavabit.com 2013-07-08 08:58:43 |
Context
|
2013-07-08
| ||
| 09:03 | Add starter of a README file check-in: 91deaaa03b user: atomicules@lavabit.com tags: origin/master, trunk | |
| 08:58 |
Add Makefile and config.mk
Probably overkill for such a tiny file, but good practice for me. check-in: fc1d33f903 user: atomicules@lavabit.com tags: origin/master, trunk | |
| 08:55 | Add in values for the three menus check-in: 4b63a4b0a2 user: atomicules@lavabit.com tags: origin/master, trunk | |
Changes
Added Makefile.
> > > > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
# exposurses
include config.mk
SRC = exposurses.c
OBJ = ${SRC:.c=.o}
all: options exposurses
options:
@echo build options:
@echo "CC = ${CC}"
.c.o:
@echo CC $<
@${CC} -c $<
exposurses: ${OBJ}
@echo CC -o $@
@${CC} -o $@ ${OBJ} ${LDFLAGS}
clean:
@echo cleaning
@rm -f exposurses
|
Added config.mk.
> > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
# Customize below to fit your system
# paths
PREFIX = /usr/local
MANPREFIX = ${PREFIX}/share/man
# includes and libs
#INCS = -I. -I/usr/include
LIBS=-lmenu -lcurses
# flags
LDFLAGS = -s ${LIBS}
# compiler and linker
CC = cc
|