1
0
mirror of git://projects.qi-hardware.com/wernermisc.git synced 2025-04-21 12:27:27 +03:00

qpkg/: initial commit (sneak preview only, doesn't work properly yet)

This commit is contained in:
Werner Almesberger
2010-11-19 14:00:15 -03:00
commit 43b9dc1972
10 changed files with 1015 additions and 0 deletions

11
qpkg/Makefile Normal file
View File

@@ -0,0 +1,11 @@
CFLAGS = -Wall -Wshadow -g
# -O, so that we get data flow analysis, which helps to find more bugs
OBJS = gobble.o id.o prereq.o qpkg.o
all: qpkg
qpkg: $(OBJS)
clean:
rm -f $(OBJS)