Skip to content

Commit

Permalink
Merge pull request #50 from hmaarrfk/patch-2
Browse files Browse the repository at this point in the history
No need for CPP flags on linux
  • Loading branch information
PaulStoffregen authored Nov 9, 2019
2 parents cf15caf + 9431723 commit e98b506
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ ifeq ($(OS), LINUX) # also works on FreeBSD
CC ?= gcc
CFLAGS ?= -O2 -Wall
teensy_loader_cli: teensy_loader_cli.c
$(CC) $(CFLAGS) $(CPPFLAGS) -s -DUSE_LIBUSB -o teensy_loader_cli teensy_loader_cli.c -lusb $(LDFLAGS)
$(CC) $(CFLAGS) -s -DUSE_LIBUSB -o teensy_loader_cli teensy_loader_cli.c -lusb $(LDFLAGS)


else ifeq ($(OS), WINDOWS)
Expand Down

0 comments on commit e98b506

Please sign in to comment.