aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGalen Guyer <galen@galenguyer.com>2021-04-24 15:11:25 -0400
committerGalen Guyer <galen@galenguyer.com>2021-04-24 15:11:25 -0400
commit73da8b7cfd65c3a1ab015d1355a0174404312a74 (patch)
treec241ddb5cf86b1afc8595eadcc8cbe24fa5702ea
Add new project files
-rw-r--r--.gitignore2
-rw-r--r--Makefile21
-rw-r--r--composer.c3
3 files changed, 26 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..a295091
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,2 @@
+# Compiled binary
+composer \ No newline at end of file
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..05b422b
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,21 @@
+CC=gcc
+
+CFLAGS=-Wall -Wextra -pedantic -fstack-protector-all -pedantic -std=c99
+SANITY_FLAGS=-Wfloat-equal -Wshadow -Wpointer-arith
+
+PREFIX ?= /usr
+
+SOURCE=composer.c
+
+OUTPUT=composer
+
+ALL: $(OUTPUT)
+
+debug: CFLAGS += -g -O0
+debug: $(OUTPUT)
+
+release: CFLAGS += -static -O3
+release: $(OUTPUT)
+
+$(OUTPUT): Makefile $(SOURCE)
+ $(CC) $(CFLAGS) $(SANITY_FLAGS) $(SOURCE) -o $(OUTPUT)
diff --git a/composer.c b/composer.c
new file mode 100644
index 0000000..9eab473
--- /dev/null
+++ b/composer.c
@@ -0,0 +1,3 @@
+int main(int argc, char** argv) {
+ return 0;
+} \ No newline at end of file