From 34bf6935d7e264ff15022209653cb3c409681279 Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Thu, 3 Aug 2023 14:48:58 -0400 Subject: [PATCH] Initial commit of Hello, world! --- Makefile | 7 +++++++ libsvgtiny-pixbuf.c | 6 ++++++ 2 files changed, 13 insertions(+) create mode 100644 Makefile create mode 100644 libsvgtiny-pixbuf.c diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..dfb6a47 --- /dev/null +++ b/Makefile @@ -0,0 +1,7 @@ +OBJS = libsvgtiny-pixbuf.o +EXE = libsvgtiny-pixbuf +$(EXE): $(OBJS) + +.PHONY: clean +clean: + rm -f $(EXE) $(OBJS) diff --git a/libsvgtiny-pixbuf.c b/libsvgtiny-pixbuf.c new file mode 100644 index 0000000..d6ec4a7 --- /dev/null +++ b/libsvgtiny-pixbuf.c @@ -0,0 +1,6 @@ +#include + +int main(int argc, char** argv) { + printf("Hello, world!\n"); + return 0; +} -- 2.43.2