Skip to content
  • This project
    • Loading...
  • Sign in

Barry / rf-depot

Go to a project
Toggle navigation
Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Graphs
  • Network
  • Create a new issue
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • rf-depot
  • hw
  • debug
  • dbx
  • Makefile
  • root's avatar
    initial commit · bc83a1ad
    bc83a1ad
    root committed 2020-05-02 05:58:04 +0000
Makefile 270 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
# Makefile v1 Frank Berndt

PCDIR = /home/berndt/pc/dbx
OUT = dbx.v dbx.ucf
IN = $(PCDIR)/dbx.jhd $(PCDIR)/dbx.npl

out: _always
	cp $(OUT) $(PCDIR)

in: _always
	cp $(IN) .

dbx2c: dbx2c.c
	cc -O -o dbx2c dbx2c.c

dbx.c: dbx2c dbx.bin
	./dbx2c dbx.bin dbx.c

_always: