Complete makefile toolkit with generation and validation capabilities
97
97%
Does it follow best practices?
Impact
Pending
No eval scenarios have been run
Advisory
Suggest reviewing before use
The following Makefile has been submitted for review. It contains several violations of the makefile-generator skill's anti-patterns and best practices. Identify each issue, explain why it is a problem, and produce a corrected version of the Makefile.
CC = gcc
CFLAGS = -Wall -O2
PREFIX = /usr/local
ENVIRONMENT = production
all: build
build:
gcc -o app main.c server.c
deploy:
cd dist
npm publish
release:
make -C packages/core all
make -C packages/ui all
clean:
rm -rf build/
test:
./run_tests.sh
install:
cp app $(PREFIX)/bin/appYour response must: