]> gitweb.michael.orlitzky.com - libsvgtiny-pixbuf.git/commitdiff
Initial commit of Hello, world!
authorMichael Orlitzky <michael@orlitzky.com>
Thu, 3 Aug 2023 18:48:58 +0000 (14:48 -0400)
committerMichael Orlitzky <michael@orlitzky.com>
Thu, 3 Aug 2023 18:48:58 +0000 (14:48 -0400)
Makefile [new file with mode: 0644]
libsvgtiny-pixbuf.c [new file with mode: 0644]

diff --git a/Makefile b/Makefile
new file mode 100644 (file)
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 (file)
index 0000000..d6ec4a7
--- /dev/null
@@ -0,0 +1,6 @@
+#include <stdio.h>
+
+int main(int argc, char** argv) {
+  printf("Hello, world!\n");
+  return 0;
+}