diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2012-10-25 23:37:04 +0200 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2012-10-25 23:37:04 +0200 |
commit | 6a48ac4ef78d865faa2011f26874ddd1da5071ac (patch) | |
tree | 818ca5247926c33cda4fb78862fb05e5e3d2444c /Makefile | |
download | usb-tools-6a48ac4ef78d865faa2011f26874ddd1da5071ac.tar.gz |
initial revision
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..12a6610 --- /dev/null +++ b/Makefile @@ -0,0 +1,12 @@ + +CC ?= gcc +CFLAGS ?= -Os +CFLAGS += -Wall + +TARGETS := usb-print-caps + +all: $(TARGETS) + +clean: + rm -f $(TARGETS) + rm -f *~ |