We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 05c2767 commit b676b52Copy full SHA for b676b52
Makefile
@@ -1,11 +1,13 @@
1
+CFLAGS=-arch x86_64 -arch arm64e
2
+
3
macher: append_data.o macher.h macher.c
- gcc -o macher append_data.o macher.c
4
+ gcc ${CFLAGS} -o macher append_data.o macher.c
5
6
macher.h:
7
/usr/bin/env python3 make_header.py
8
9
append_data.o: append_data.c
- gcc -c append_data.c
10
+ gcc ${CFLAGS} -c append_data.c
11
12
example/hello.zip: example/main.tcl
13
cd example; zip hello.zip main.tcl
0 commit comments