From c8c21c5f650596454ec5619da8c911569baa6b42 Mon Sep 17 00:00:00 2001 From: Jakob Kaivo Date: Thu, 8 Aug 2019 15:33:20 -0400 Subject: include sample program binhex --- Makefile | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..26a3cc0 --- /dev/null +++ b/Makefile @@ -0,0 +1,9 @@ +.POSIX: + +binhex: binhex.o binary.o + +binhex.o: binhex.c binary.h +binary.o: binary.c binary.h + +clean: + rm -f binhex *.o -- cgit v1.2.1