Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
If you have to do more than (./configure &&) make; then your code needs work.
  • Loading branch information
alexxroche authored Sep 4, 2017
1 parent 35352ae commit a77e488
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
lxrtotp: lxrtotp.c
$(CC) -Wall -o $@ $<
portable: lxrtotp.c
gcc -static -Wall -o $@ $<
totp: lxrtotp.c
gcc -Wall -o $@ $<
totp_small: lxrtotp.c
gcc -O -Wall -o totp_small lxrtotp.c
totp_small_static: lxrtotp.c
gcc -static -O -Wall -o totp_small_static lxrtotp.c

0 comments on commit a77e488

Please sign in to comment.