From: Michael Orlitzky Date: Thu, 3 Aug 2023 18:48:58 +0000 (-0400) Subject: Initial commit of Hello, world! X-Git-Tag: 0.0.1~59 X-Git-Url: https://gitweb.michael.orlitzky.com/?a=commitdiff_plain;h=34bf6935d7e264ff15022209653cb3c409681279;p=libsvgtiny-pixbuf.git Initial commit of Hello, world! --- 34bf6935d7e264ff15022209653cb3c409681279 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; +}