diff options
author | Harald Welte <laforge@gnumonks.org> | 2019-05-20 17:31:24 +0200 |
---|---|---|
committer | Harald Welte <laforge@gnumonks.org> | 2019-05-20 17:31:24 +0200 |
commit | a6d5dcb7e09e67330badb8be6841e83e1ab62fd2 (patch) | |
tree | 709902e2875bc051cbf88b39f6edbe7e5c6295a5 /titan/Makefile | |
parent | dd8af6fa0e4ae0cf0a663236aa2bfd9c816b96ad (diff) |
titan: Don't use "-D" compiler flag which older versions don't have
Diffstat (limited to 'titan/Makefile')
-rw-r--r-- | titan/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/titan/Makefile b/titan/Makefile index b05d681..4feedc8 100644 --- a/titan/Makefile +++ b/titan/Makefile @@ -14,7 +14,7 @@ LDFLAGS_STATIC=-L/usr/lib/titan -lttcn3 -lxml2 -lssl -lcrypto all: compile titan.a $(GENERATED): - ttcn3_compiler -D *.ttcn + ttcn3_compiler *.ttcn titan.a: $(OBJS) $(AR) r $@ $^ |