|
Last change
on this file since 90 was 31, checked in by bird, 23 years ago |
|
Initial coding.
|
-
Property svn:eol-style
set to
native
-
Property svn:keywords
set to
Author Date Id Revision
|
|
File size:
726 bytes
|
| Line | |
|---|
| 1 | # a very simple makefile...
|
|---|
| 2 |
|
|---|
| 3 | #kmk:
|
|---|
| 4 |
|
|---|
| 5 | PROG= kmk
|
|---|
| 6 | CFLAGS+= -I${.CURDIR} -DNMAKE=1
|
|---|
| 7 | SRCS= arch.c buf.c compat.c cond.c dir.c for.c hash.c job.c main.c \
|
|---|
| 8 | make.c parse.c str.c suff.c targ.c var.c util.c
|
|---|
| 9 | SRCS+= lstAppend.c lstAtEnd.c lstAtFront.c lstClose.c lstConcat.c \
|
|---|
| 10 | lstDatum.c lstDeQueue.c lstDestroy.c lstDupl.c lstEnQueue.c \
|
|---|
| 11 | lstFind.c lstFindFrom.c lstFirst.c lstForEach.c lstForEachFrom.c \
|
|---|
| 12 | lstInit.c lstInsert.c lstIsAtEnd.c lstIsEmpty.c lstLast.c \
|
|---|
| 13 | lstMember.c lstNext.c lstOpen.c lstRemove.c lstReplace.c lstSucc.c
|
|---|
| 14 | .PATH: ${.CURDIR}/lst.lib
|
|---|
| 15 |
|
|---|
| 16 | NOSHARED?=YES
|
|---|
| 17 |
|
|---|
| 18 | .include <bsd.prog.mk>
|
|---|
| 19 |
|
|---|
| 20 |
|
|---|
| 21 |
|
|---|
| 22 | #pmake:
|
|---|
| 23 | # @echo 'make started.'
|
|---|
| 24 | # cc -I. -c *.c
|
|---|
| 25 | # cd lst.lib; cc -I.. -c *.c
|
|---|
| 26 | # cc *.o lst.lib/*.o -o pmake
|
|---|
| 27 | # @echo 'make completed.'
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.