diff options
author | Leah Neukirchen <leah@vuxu.org> | 2023-10-21 17:18:26 +0200 |
---|---|---|
committer | Leah Neukirchen <leah@vuxu.org> | 2023-10-21 17:18:26 +0200 |
commit | 8fa6c2456035d9febdc240a8cbdaa7b2d3964367 (patch) | |
tree | 164c60337dfd69928408dd0702ea5dc8cf46aa78 /Makefile | |
download | nitro-8fa6c2456035d9febdc240a8cbdaa7b2d3964367.tar.gz nitro-8fa6c2456035d9febdc240a8cbdaa7b2d3964367.tar.xz nitro-8fa6c2456035d9febdc240a8cbdaa7b2d3964367.zip |
initial commit
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..c693459 --- /dev/null +++ b/Makefile @@ -0,0 +1,11 @@ +CFLAGS=-g -O2 -Wall -Wno-switch -Wextra -Wwrite-strings +LDLIBS=-luv + +ALL=nitro + +all: $(ALL) + +clean: FRC + rm -f $(ALL) + +FRC: |