diff options
| author | turret <turret@duck.com> | 2026-05-17 21:13:45 -0500 |
|---|---|---|
| committer | turret <turret@duck.com> | 2026-05-17 21:13:45 -0500 |
| commit | 84c75e25183a8aed321bbbbc2ffcc5d21adbd92c (patch) | |
| tree | 31b3903f433224bd1f8de6badc6c7fd09b48a786 /Makefile | |
| parent | 397f95a3c09d2aa66a51aad1952975c924e6be0b (diff) | |
| download | gengine-sdk-master.tar.gz gengine-sdk-master.tar.bz2 gengine-sdk-master.zip | |
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -3,11 +3,14 @@ LDFLAGS = -no-pie -g .PHONY: all clean -all: gen_init_cpio +all: gen_init_cpio mkmat %.o: %.c $(CC) -o $@ -c $< +mkmat: mkmat.o + $(CC) -o $@ $^ $(LDFLAGS) + gen_init_cpio: gen_init_cpio.o $(CC) -o $@ $^ $(LDFLAGS) |
