Skip to content

hxsaj/http

 
 

Repository files navigation

Preface

任何问题都可以发在 Issues 里面 :)

How to make

  • first write a hello.c, then

    $ make hello
    $ ./hello

    to debug and test

  • Makefile basic format

    edit : main.o abc.o
    	cc -o edit main.o abc.o
    
    main.o : main.c def.h
    	cc -c main.c
    abc.o : abc.c def.h
    	cc -c abc.c
    
    clean :
    	rm main.o abc.o
    .PHONY : edit clean

    then

    $ make
    $ make clean
    

About

Procedures of learning Computer Science

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 59.7%
  • Python 23.4%
  • C 13.0%
  • HTML 1.3%
  • JavaScript 1.1%
  • MATLAB 0.9%
  • Other 0.6%