Browse Source

added linker option for math library; added dict_use to all target

master
T. Meissner 9 years ago
parent
commit
45f57c91e1
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      21st_century_c/chapter11/Makefile

+ 2
- 2
21st_century_c/chapter11/Makefile View File

@ -1,4 +1,4 @@
CFLAGS = -Wall -O0 --std=c11 -g
CFLAGS = -Wall -O0 --std=c11 -g -lm
simple_cplx : cplx.h complex.c simple_cplx.c
@ -15,7 +15,7 @@ dict_use : keyval.h keyval.c dict.h dict.c dict_use.c
.PHONY : all
all : simple_cplx seamlessone seamlesstwo
all : simple_cplx seamlessone seamlesstwo dict_use
.PHONY : check
check : *.h *.c


Loading…
Cancel
Save