martinpaljak / osx-ccid-installer

Easy-to-use (graphical) open source CCID driver installer for OSX El Capitan (10.11) / macOS Sierra (10.12)
40 stars 18 forks source link

make -C osx-ccid-installer does not work #6

Closed mouse07410 closed 8 years ago

mouse07410 commented 8 years ago

Mac OS X 10.11.4, Xcode-7.3.1, Macports-2.3.4 (whatever's the current).

Also, the README.md there says

  • To build yourself (requires XCode plus libtool, autoconf and automake from Homebrew/MacPorts/Fink)
  git clone --recursive https://github.com/martinpaljak/osx-ccid-installer
  make -C osx-ccid-installer

It does not work (listing after make command without parameters was executed):

$ ls -l
total 744
drwxr-xr-x  47 ur20980  MITLL\Domain Users    1598 May 20 09:58 CCID
-rw-r--r--   1 ur20980  MITLL\Domain Users     791 May 20 09:55 Distribution.xml
-rw-r--r--   1 ur20980  MITLL\Domain Users      24 May 20 09:55 Makefile
-rw-r--r--   1 ur20980  MITLL\Domain Users    1004 May 20 09:55 README.md
drwxr-xr-x   4 ur20980  MITLL\Domain Users     136 May 20 09:58 build
-rw-r--r--   1 ur20980  MITLL\Domain Users      45 May 20 09:58 ccid-1.4.23-7-ge039760.tar.gz
-rw-r--r--@  1 ur20980  MITLL\Domain Users  133393 May 20 09:58 ccid-installer.dmg
-rw-r--r--   1 ur20980  MITLL\Domain Users  107753 May 20 09:58 ccid-installer.pkg
drwxr-xr-x   3 ur20980  MITLL\Domain Users     102 May 20 09:55 ccid-patches
-rw-r--r--   1 ur20980  MITLL\Domain Users  103225 May 20 09:58 ifd-ccid.pkg
drwxr-xr-x  48 ur20980  MITLL\Domain Users    1632 May 20 09:58 libusb
-rwxr-xr-x   1 ur20980  MITLL\Domain Users    1760 May 20 09:55 package.sh
drwxr-xr-x   4 ur20980  MITLL\Domain Users     136 May 20 09:55 resources
drwxr-xr-x   3 ur20980  MITLL\Domain Users     102 May 20 09:55 scripts
drwxr-xr-x   3 ur20980  MITLL\Domain Users     102 May 20 09:58 target
-rw-r--r--   1 ur20980  MITLL\Domain Users    4742 May 20 09:58 uninstall.pkg
drwxr-xr-x   3 ur20980  MITLL\Domain Users     102 May 20 09:55 uninstaller-scripts
$ make -C osx-ccid-installer
make: *** osx-ccid-installer: No such file or directory.  Stop.
$ 

make without parameters works and produces the desired/expected results. I think README.md needs to be corrected. And if would help to mention there which of the two (or both) generated packages need to be installed, and in what order (if both are needed).

martinpaljak commented 8 years ago

either 1) cd osx-ccid-installer && make OR 2) make -C osx-ccid-installer

mouse07410 commented 8 years ago

Thanks! It would still help if the README would say so, for those like myself who didn't immediately figure it out.