diff options
author | Niels Möller <nisse@lysator.liu.se> | 2004-12-01 19:21:38 +0100 |
---|---|---|
committer | Niels Möller <nisse@lysator.liu.se> | 2004-12-01 19:21:38 +0100 |
commit | 38ad546413d6d117a6e4a282c7081262caa1a16b (patch) | |
tree | 26e8fdba572eacbd550f87e0e51f403c19889965 /config.make.in | |
parent | 2b3aa6c51caee9e8f832afc168f52354ee4a12a4 (diff) | |
download | nettle-38ad546413d6d117a6e4a282c7081262caa1a16b.tar.gz |
Added a default target.
Rev: src/nettle/ChangeLog:1.311
Rev: src/nettle/config.make.in:1.5
Diffstat (limited to 'config.make.in')
-rw-r--r-- | config.make.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/config.make.in b/config.make.in index 24a305f4..fde42089 100644 --- a/config.make.in +++ b/config.make.in @@ -60,6 +60,10 @@ infodir = @infodir@ COMPILE = $(CC) $(PRE_CPPFLAGS) $(CPPFLAGS) $(DEFS) $(CFLAGS) $(CCPIC) $(DEP_FLAGS) LINK = $(CC) $(CFLAGS) $(PRE_LDFLAGS) $(LDFLAGS) +# Default rule. Must be here, since config.make is included before the +# usual targets. +default: all + # Disable builtin rule %$(EXEEXT) : %.c |