blob: 45e05cc7d3134a021e50caa850807e0a83af02ca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#######################################################################
#
# TARGET should be set by autoconf only. Don't touch it.
#
# The SOURCES definition should list ALL source files.
#
# SRC_CFLAGS defines addition C compiler flags. You usually don't
# want to modify this, though. Get it from autoconf.
#
# The TGT_LDLIBS definition should list ALL required libraries.
#
#######################################################################
TARGETNAME := @targetname@
ifneq "$(TARGETNAME)" ""
TARGET := $(TARGETNAME).a
endif
SOURCES := $(TARGETNAME).c validate.c decrypt.c
SRC_CFLAGS := @mod_cflags@
TGT_LDLIBS := @mod_ldflags@
|