blob: ba99722d11fe038f4d88242528ee83892266e2ca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
.SUFFIXES:
.SECONDARY:
ifeq "$(DEBUG)" "yes"
debug : ALL
endif
.PHONY: install
install: $(REGISTERFLAG)
$(SDKTYPEFLAG): #$(URE_TYPES) $(OFFICE_TYPES)
-$(MKDIR) $(subst /,$(PS),$(@D))
-$(DEL) $(subst \\,\,$(subst /,$(PS),$(SDKTYPEFLAG)))
$(CPPUMAKER) -Gc -BUCR -O$(OUT_INC) $(URE_TYPES) $(OFFICE_TYPES)
echo flagged > $@
|