diff options
| author | Franklin Wei <git@fwei.tk> | 2015-11-07 12:47:43 -0500 |
|---|---|---|
| committer | Franklin Wei <git@fwei.tk> | 2015-11-07 12:47:43 -0500 |
| commit | ebecf80830fc88d537436e5c74f3328256f0170a (patch) | |
| tree | 5bb597a5c62ed2f63c14ea25c4d04927d162fa16 /Makefile | |
| download | ducky-ebecf80830fc88d537436e5c74f3328256f0170a.zip ducky-ebecf80830fc88d537436e5c74f3328256f0170a.tar.gz ducky-ebecf80830fc88d537436e5c74f3328256f0170a.tar.bz2 ducky-ebecf80830fc88d537436e5c74f3328256f0170a.tar.xz | |
initial commit
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..ff48041 --- /dev/null +++ b/Makefile @@ -0,0 +1,8 @@ +CC = gcc + +DUCKY_OBJ = src/ducky.o + +CFLAGS = -lbsd -lm -O2 -g -I src/ + +unix: $(DUCKY_OBJ) sysdep/unix.o + $(CC) $(DUCKY_OBJ) sysdep/unix.o $(CFLAGS) -o unix.bin |