diff options
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | Makefile.in | 4 |
2 files changed, 3 insertions, 2 deletions
@@ -48,6 +48,7 @@ | |||
48 | less racy and (hopefully) more reliable on slow hardware. | 48 | less racy and (hopefully) more reliable on slow hardware. |
49 | - [Makefile umac.c] Add special-case target to build umac128.o. | 49 | - [Makefile umac.c] Add special-case target to build umac128.o. |
50 | - [umac.c] Enforce allowed umac output sizes. From djm@. | 50 | - [umac.c] Enforce allowed umac output sizes. From djm@. |
51 | - [Makefile.in] "Using $< in a non-suffix rule context is a GNUmake idiom". | ||
51 | 52 | ||
52 | 20120917 | 53 | 20120917 |
53 | - (dtucker) OpenBSD CVS Sync | 54 | - (dtucker) OpenBSD CVS Sync |
diff --git a/Makefile.in b/Makefile.in index a0dc5dcf7..e4f9ee194 100644 --- a/Makefile.in +++ b/Makefile.in | |||
@@ -1,4 +1,4 @@ | |||
1 | # $Id: Makefile.in,v 1.327 2012/10/05 01:38:25 dtucker Exp $ | 1 | # $Id: Makefile.in,v 1.328 2012/10/05 05:41:07 dtucker Exp $ |
2 | 2 | ||
3 | # uncomment if you run a non bourne compatable shell. Ie. csh | 3 | # uncomment if you run a non bourne compatable shell. Ie. csh |
4 | #SHELL = @SH@ | 4 | #SHELL = @SH@ |
@@ -197,7 +197,7 @@ moduli: | |||
197 | 197 | ||
198 | # special case target for umac128 | 198 | # special case target for umac128 |
199 | umac128.o: umac.c | 199 | umac128.o: umac.c |
200 | $(CC) $(CFLAGS) $(CPPFLAGS) -o umac128.o -c $< \ | 200 | $(CC) $(CFLAGS) $(CPPFLAGS) -o umac128.o -c $(srcdir)/umac.c \ |
201 | -DUMAC_OUTPUT_LEN=16 -Dumac_new=umac128_new \ | 201 | -DUMAC_OUTPUT_LEN=16 -Dumac_new=umac128_new \ |
202 | -Dumac_update=umac128_update -Dumac_final=umac128_final \ | 202 | -Dumac_update=umac128_update -Dumac_final=umac128_final \ |
203 | -Dumac_delete=umac128_delete | 203 | -Dumac_delete=umac128_delete |