diff options
author | Thomas Albers <thomas@thomaslabs.org> | 2023-05-02 08:07:05 +0200 |
---|---|---|
committer | Thomas Albers <thomas@thomaslabs.org> | 2023-05-02 08:07:05 +0200 |
commit | 2055b0c662b81d353c96e4fc474c2fe1a79cd953 (patch) | |
tree | d2df3cf7c0056c82f6b2718e5d6a6ce7aa7d35d3 /Makefile |
Initial commit
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..1ddf091 --- /dev/null +++ b/Makefile @@ -0,0 +1,16 @@ +TARGET = zup +PREFIX = /usr + +$(TARGET) : upload.c + gcc -o $@ $< + +all : $(TARGET) + +.PHONY : install +install : + mkdir -p $(PREFIX)/bin + install $(TARGET) $(PREFIX)/bin/$(TARGET) + +.PHONY : clean +clean : + rm $(TARGET) |