19 lines
277 B
Plaintext
19 lines
277 B
Plaintext
#
|
|
# Skeleton Makefile -- process with smake to create real Makefile.
|
|
#
|
|
# $Header$
|
|
#
|
|
.opt -o GNUmakefile.in
|
|
|
|
LIBRARY = argv
|
|
SRCS = argv.c
|
|
|
|
.include <library.smk>
|
|
.include <autoconf.base.smk>
|
|
|
|
test: test.o libargv.a
|
|
$(CC) $(LDFLAGS) -o $@ $^
|
|
|
|
clean-local::
|
|
rm -f test test.o
|