#!/usr/bin/make -f
%:
	dh $@

override_dh_auto_install:
	# Compile the source (assuming echo.c is in the parent directory)
	gcc echo.c -o lecho
	# Create the target directory and install the binary as /usr/bin/lecho
	install -D -m 0755 lecho debian/echo/usr/bin/lecho

override_dh_auto_clean:
	# Remove the compiled binary to ensure a clean build
	rm -f lecho
