chiark / gitweb /
Minor changes to the PiGlow code - got the orange & yellow the right way
[wiringPi.git] / devLib / Makefile
index a3c0d4228c51b787ed2413ac03e7cae20bc96e88..4ba17746d7c58d8e2af36041c3c6f84994e515d8 100644 (file)
@@ -65,18 +65,18 @@ $(DYNAMIC): $(OBJ)
        @echo [Compile] $<
        @$(CC) -c $(CFLAGS) $< -o $@
 
-.PHONEY:       clean
+.PHONY:        clean
 clean:
        @echo "[Clean]"
        @rm -f $(OBJ) $(OBJ_I2C) *~ core tags Makefile.bak libwiringPiDev.*
 
-.PHONEY:       tags
+.PHONY:        tags
 tags:  $(SRC)
        @echo [ctags]
        @ctags $(SRC)
 
 
-.PHONEY:       install-headers
+.PHONY:        install-headers
 install-headers:
        @echo "[Install Headers]"
        @install -m 0755 -d                     $(DESTDIR)$(PREFIX)/include
@@ -89,7 +89,7 @@ install-headers:
        @install -m 0644 lcd.h                  $(DESTDIR)$(PREFIX)/include
        @install -m 0644 piGlow.h               $(DESTDIR)$(PREFIX)/include
 
-.PHONEY:       install
+.PHONY:        install
 install:       $(DYNAMIC) install-headers
        @echo "[Install Dynamic Lib]"
        @install -m 0755 -d                                             $(DESTDIR)$(PREFIX)/lib
@@ -97,13 +97,13 @@ install:    $(DYNAMIC) install-headers
        @ln -sf $(DESTDIR)$(PREFIX)/lib/libwiringPiDev.so.$(VERSION)    $(DESTDIR)/lib/libwiringPiDev.so
        @ldconfig
 
-.PHONEY:       install-static
+.PHONY:        install-static
 install-static:        $(STATIC) install-headers
        @echo "[Install Static Lib]"
        @install -m 0755 -d                     $(DESTDIR)$(PREFIX)/lib
        @install -m 0755 libwiringPiDev.a       $(DESTDIR)$(PREFIX)/lib
 
-.PHONEY:       uninstall
+.PHONY:        uninstall
 uninstall:
        @echo "[UnInstall]"
        @rm -f $(DESTDIR)$(PREFIX)/include/ds1302.h
@@ -118,7 +118,7 @@ uninstall:
        @ldconfig
 
 
-.PHONEY:       depend
+.PHONY:        depend
 depend:
        makedepend -Y $(SRC)