mirror of
https://github.com/neovim/neovim.git
synced 2024-12-25 13:45:15 -07:00
12 lines
177 B
Makefile
12 lines
177 B
Makefile
|
POST = $(shell find pre -name '*.h' | sed 's/^pre/post/')
|
||
|
|
||
|
all: $(POST)
|
||
|
|
||
|
$(POST): post/%: pre/%
|
||
|
@echo GEN $*
|
||
|
@mkdir -p $(@D)
|
||
|
@cc -std=c99 -E -P $< -o $@
|
||
|
|
||
|
clean:
|
||
|
rm -rf post
|