summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorBent Bisballe Nyeng <deva@aasimon.org>2013-04-08 11:20:21 +0200
committerBent Bisballe Nyeng <deva@aasimon.org>2013-04-08 11:20:21 +0200
commit8ef814812b93b2039b89f8a107d45c2ec21b2a8e (patch)
treec5cac911b1d3fd7a34fb6524011f9b70b1277356 /Makefile
parent236638cd8731712e3446ba2db8b5e952c9589a7e (diff)
parentb8c9e442a9313f27670dcae97757b3c416ac263d (diff)
Merge branch 'master' of http://git.aasimon.org/public/libusbhp
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile19
1 files changed, 0 insertions, 19 deletions
diff --git a/Makefile b/Makefile
deleted file mode 100644
index 594d5ee..0000000
--- a/Makefile
+++ /dev/null
@@ -1,19 +0,0 @@
-CFLAGS=-O2
-CFLAGS+=-g -Wall -Werror
-#
-# Detect if we're on windows or linux:
-#
-ifeq ($(OS),Windows_NT)
- CC=g++
- CFLAGS+=
- LIBS+=-static-libgcc -lsetupapi
- EXE=.exe
-else
- CC=gcc
- CFLAGS+=`pkg-config --cflags libudev`
- LIBS+=`pkg-config --libs libudev`
- EXE=
-endif
-
-all:
- ${CC} ${CFLAGS} test/test.c libusbhp/libusbhp.c -o detect${EXE} ${LIBS}