Skip to content

Commit

Permalink
Respect user env during compilation
Browse files Browse the repository at this point in the history
Also respect env in subdirs

Signed-off-by: Justin Lecher <[email protected]>
  • Loading branch information
jlec committed Aug 30, 2012
1 parent 0153be1 commit b2bab8d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ SRC = usb_libusb.c nvstusb.c
OBJ = $(SRC:.c=.o)
OUT = libnvstusb.a

CC = gcc
CFLAGS = -O2 -g
CC ?= gcc
CFLAGS ?= -O2 -g

all: $(OUT)

Expand Down

0 comments on commit b2bab8d

Please sign in to comment.