Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| SHA1 Hash: | 8504aa5ae4de2320d64aa66dec2dc3674afbfe46 |
|---|---|
| Date: | 2008-09-18 13:22:22 |
| User: | stephan |
| Comment: | added url parser |
Tags And Properties
- branch=trunk inherited from [d45e7467f2]
- sym-trunk inherited from [d45e7467f2]
Changes
Changes to GNUmakefile
| Old (b3c08e5831ca2b4e) | New (d8f821331a317891) | |||
|---|---|---|---|---|
| 1 | #!/usr/bin/make -f | 1 | #!/usr/bin/make -f | |
| 2 | # Requires GNU Make! | 2 | # Requires GNU Make! | |
| 3 | 3 | |||
| 4 | ifneq (,$(strip $(filter distclean clean,$(MAKECMDGOALS)))) | 4 | ifneq (,$(strip $(filter distclean clean,$(MAKECMDGOALS)))) | |
| 5 | flags.making_clean := 1 | 5 | flags.making_clean := 1 | |
| 29 hidden lines | ||||
| 35 | TYPELIST_GEN_ALL := $(patsubst %,$(PARSEPP_TYPELIST_PREFIX)%.hpp,$(TYPELIST_VAR_ARGC)) | 35 | TYPELIST_GEN_ALL := $(patsubst %,$(PARSEPP_TYPELIST_PREFIX)%.hpp,$(TYPELIST_VAR_ARGC)) | |
| 36 | CLEAN_FILES += $(TYPELIST_GEN_ALL) | 36 | CLEAN_FILES += $(TYPELIST_GEN_ALL) | |
| 37 | parsepp_typelist.hpp: $(TYPELIST_GEN_ALL) | 37 | parsepp_typelist.hpp: $(TYPELIST_GEN_ALL) | |
| 38 | 38 | |||
| 39 | test.BIN.OBJECTS := test.o | 39 | test.BIN.OBJECTS := test.o | |
| 40 | $(call ShakeNMake.CALL.RULES.BINS,test) | | | 40 | url.BIN.OBJECTS := url.o |
| 41 | bins: test | | | 41 | $(call ShakeNMake.CALL.RULES.BINS,test url) |
| | | 42 | bins: test url | ||
| 42 | 43 | |||
| 43 | CLEAN_FILES += *~ | 44 | CLEAN_FILES += *~ | |
| 44 | 45 | |||
| 45 | all: bins | 46 | all: bins | |