Makefile 164 B

12345678910
  1. all: door32 testdoor/testdoor
  2. door32: door32.c
  3. gcc -o door32 door32.c
  4. testdoor/testdoor: testdoor/testdoor.go door/door.go
  5. cd testdoor; go build testdoor.go