Skip to content

Commit

Permalink
Fix makefile.in.
Browse files Browse the repository at this point in the history
Signed-off-by: Achim Kraus <[email protected]>
  • Loading branch information
boaks committed Mar 1, 2023
1 parent 861ce7b commit 0d5d753
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions tests/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ top_srcdir:= @top_srcdir@

# files and flags
SOURCES:= dtls-server.c ccm-test.c \
dtls-client.c
dtls-client.c dtls_ciphers_util.c
#cbc_aes128-test.c #dsrv-test.c
OBJECTS:= $(patsubst %.c, %.o, $(SOURCES))
PROGRAMS:= $(patsubst %.c, %, $(SOURCES))
PROGRAMS:= dtls-server dtls-client ccm-test
HEADERS:=
CFLAGS:=-Wall -std=c99 @CFLAGS@ @WARNING_CFLAGS@ $(EXTRA_CFLAGS) -D_GNU_SOURCE
CPPFLAGS:=-I$(top_srcdir) @CPPFLAGS@
Expand All @@ -47,6 +47,8 @@ FILES:=Makefile.in $(SOURCES) ccm-testdata.c #cbc_aes128-testdata.c

all: $(PROGRAMS)

dtls-client dtls-server:: dtls_ciphers_util.o

check:
echo DISTDIR: $(DISTDIR)
echo top_builddir: $(top_builddir)
Expand Down

0 comments on commit 0d5d753

Please sign in to comment.