diff options
author | Jari Vetoniemi <mailroxas@gmail.com> | 2018-10-09 08:49:46 +0300 |
---|---|---|
committer | Jari Vetoniemi <mailroxas@gmail.com> | 2018-10-11 14:07:43 +0300 |
commit | 2198478cd22cec4ea2b645d4e9f31ee9c2508ff5 (patch) | |
tree | 101afb521b4d48fb0691cbb653fb2101ecea6a4f /Makefile | |
parent | 987c0427f07afb5eec6c719b090a4028fd1feaac (diff) |
push for remote work
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -8,11 +8,11 @@ WARNINGS := -Wall -Wextra -Wpedantic -Wformat=2 -Wstrict-aliasing=3 -Wstrict-ove -Wfloat-equal -Wcast-align -Wpointer-arith -Wchar-subscripts -Warray-bounds=2 override CFLAGS ?= -g -override CFLAGS += -std=c11 $(WARNINGS) +override CFLAGS += -std=c11 -D_DEFAULT_SOURCE $(WARNINGS) override CPPFLAGS += -Isrc override COLMFLAGS += -Isrc/compiler -bins = fspec-info dec2bin xidec xi2path xils xifile uneaf +bins = fspec-info fspec-dump dec2bin xidec xi2path xils xifile uneaf all: $(bins) %.c: %.lm @@ -35,6 +35,7 @@ fspec-compiler.a: src/compiler/compiler.c fspec-compiler-native.a fspec-info: private LDLIBS += -lcolm fspec-info: src/bin/fspec-info.c fspec-compiler.a fspec-compiler-native.a +fspec-dump: src/bin/fspec-dump.c dec2bin: src/bin/misc/dec2bin.c |