2016年1月4日月曜日

Makefile 01


Directory ---bin--bin(copy)
                 -- ctest-- hello.c, hello.h,Makefile



hello.h
#include
int hello(){
    printf("hello, world!n");
    return 1;
}


hello.c
#include "hello.h"
int main(){
    hello();
    return 0;
}


Makefile=======

Trgts = hello
InstDir = ../bin/

$(Trgts):hello.o
    $(CC) -o $@ $^

clean:
    rm *.o $(Trgts)

install:
    cp $(Trgts) $(InstDir)

2016年1月3日日曜日

Ubuntuでのパッケージ(.deb)直接インストール、dmsegでのカーネル履歴確認

使用OS:Ubuntu14.04

$ dpkg -i xxx.deb


$ dmseg
でカーネルの動作履歴が確認できる。
USBのプラグ&プレイデバイスがどこに割り当てられたか(ttyusb0等)を確認するのに便利