X-Git-Url: https://deadsoftware.ru/gitweb?a=blobdiff_plain;f=Makefile;h=0dbb36af4808f0d829814dcb6fb26e8040308210;hb=da59d5524abbb95fb4112248dea75396cd00ff6d;hp=7a09b516badb1fd84a5e2d59e77685a1f7ca0350;hpb=816241afc2a91e54e86b4534ce5264f11d229dc6;p=odcread.git diff --git a/Makefile b/Makefile index 7a09b51..0dbb36a 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,8 @@ # * $(MODULE)/*.cc -- module source files MODULES := main reader store alien typeregister textmodel fold typepath -CFLAGS += -I. +CFLAGS = -I. +CC = g++ # Variables for the modules to write to SRCS := @@ -16,11 +17,11 @@ include $(patsubst %,%/Make.inc,$(MODULES)) # This rule just links the object files together odcread: $(SRCS:.cc=.o) - g++ -o $@ $^ + $(CC) -o $@ $^ # This rule build an object (.o) from a source (.cc). %.o: %.cc - g++ $(CFLAGS) $< -c -o $@ + $(CC) $(CFLAGS) $< -c -o $@ # For each implementation header (.ih) generate a dependency (.d) file which # will ensure that the compiled header (.ih.gch) is rebuilt whenever the header @@ -33,8 +34,8 @@ odcread: $(SRCS:.cc=.o) # The .d file is not an explicit target because it will need to be (re-)built # if and only if the .ih.gch needs to be rebuilt. %.ih.gch: %.ih - g++ $(CFLAGS) -x c++-header $< -MM -MF $*.d -MP -MT $@ - g++ $(CFLAGS) -x c++-header $< -o $@ + $(CC) $(CFLAGS) -x c++-header $< -MM -MF $*.d -MP -MT $@ + $(CC) $(CFLAGS) -x c++-header $< -o $@ # Each module has a .ih file that should be *the only* include from the .cc # files. These .ih files are pre-compiled to .ih.gch, and dependency caching @@ -45,7 +46,9 @@ endef $(foreach src,$(SRCS),$(eval $(call depend_on_compiled_header,$(src)))) clean: - rm -f odcread *.o */*.o */*.d */*.ih.gch + rm -f */*.o */module.d */module.ih.gch +dist-clean: clean + rm -f odcread # Include the generated dependency files (if they exist) -include $(patsubst %,%/module.d,$(MODULES))