Skip to main content
DevTools24

مولد Makefile

إنشاء ملفات Makefile مع محرر مرئي. إضافة الأهداف والمتغيرات والتبعيات مع إعدادات مسبقة للغات.

=
=
make
# Runs default target
make target_name
# Runs specific target

Makefiles - التفاصيل التقنية

Make is a build automation tool that reads Makefiles to determine how to build targets. Targets have dependencies and commands. Use variables for reusability, .PHONY for non-file targets, and tab indentation for commands.

بديل سطر الأوامر

# Run default target\nmake\n\n# Run specific target\nmake build\nmake clean

المرجع

عرض المواصفات الرسمية