diff options
author | Michael I. Bushnell <mib@gnu.org> | 1993-12-07 03:39:26 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1993-12-07 03:39:26 +0000 |
commit | e2edb4d7956adb477beaa67bff375e06d7e6dfbe (patch) | |
tree | 30e50083cd486c3106b9b94e5bd3aeb7f115fb6d /Makeconf | |
parent | 5607205c27aa52c35b98c11f385486f3d9ca75ae (diff) |
Formerly Makeconf.~8~
Diffstat (limited to 'Makeconf')
-rw-r--r-- | Makeconf | 15 |
1 files changed, 15 insertions, 0 deletions
@@ -41,6 +41,19 @@ $(CC) -nostdlib -e__start $(ldflags) -o $@ $(CFLAGS) $(startup) \ $^ $(libthreads) $(libc) -lgcc endef +# Making a snapshot + +lndist: $(DIST_FILES) $(hurdsource)/hurd-snap/$(dir) + ln $(DIST_FILES) $(hurdsource)/hurd-snap/$(dir) + +ifeq ($(dir),.) +$(hurdsource)/hurd-snap/$(dir): +else +$(hurdsource)/hurd-snap/$(dir): + mkdir $(hurdsource)/hurd-snap/$(dir) +endif + + # Some very useful dependencies ifneq ($(strip $(dir)),libports) @@ -58,3 +71,5 @@ $(headers)/libioserver.h: FORCE endif FORCE: + + |