From ff415f69a93812418cc60a33dd14452fc6b2901a Mon Sep 17 00:00:00 2001 From: Thomas Voss Date: Tue, 25 Jun 2024 15:50:13 +0200 Subject: Support generation of asm/obj files --- vendor/optparse-master/Makefile | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 vendor/optparse-master/Makefile (limited to 'vendor/optparse-master/Makefile') diff --git a/vendor/optparse-master/Makefile b/vendor/optparse-master/Makefile new file mode 100644 index 0000000..392b4eb --- /dev/null +++ b/vendor/optparse-master/Makefile @@ -0,0 +1,10 @@ +CFLAGS = -ansi -pedantic -Wall -Wextra -g3 + +test : test.c optparse.h + $(CC) $(CFLAGS) $(LDFLAGS) -o $@ test.c $(LDLIBS) + +run : test + ./test -abdfoo -c bar subcommand example.txt -a + +clean : + rm -f test -- cgit v1.2.3