]>
Commit | Line | Data |
---|---|---|
6bb65964 A |
1 | all : linkconfig |
2 | ||
3 | linkconfig.o: linkconfig.c Makefile | |
4 | cc -I../../SystemConfiguration.fproj -Wall -g -DMAIN -O0 -c linkconfig.c | |
5 | ||
6 | linkconfig: linkconfig.o Makefile | |
7 | # cc -o linkconfig linkconfig.c -framework CoreFoundation -framework SystemConfiguration -framework IOKit | |
8 | cc -o linkconfig linkconfig.o -framework CoreFoundation -framework SystemConfiguration | |
9 | ||
10 | clean: | |
11 | rm -rf *.o linkconfig linkconfig.dSYM | |
12 |