mirror of
https://github.com/cesanta/mongoose.git
synced 2024-12-05 02:49:00 +08:00
11 lines
409 B
Makefile
11 lines
409 B
Makefile
NAME = ti-ek-tm4c1294xl-http-server
|
|
DOCKER ?= docker run -v $(CURDIR):/workspace mdashnet/ccs
|
|
|
|
build:
|
|
git clone --depth 1 https://github.com/mongoose-examples/$(NAME)
|
|
cp ./../../../mongoose.[ch] $(NAME)/
|
|
$(DOCKER) /opt/ti/ccs/eclipse/eclipse -noSplash -data /workspace -application com.ti.ccstudio.apps.projectBuild -ccs.autoImport -ccs.projects $(NAME) -ccs.configuration Release
|
|
|
|
clean:
|
|
rm -rf $(NAME)
|