Skip to content
Snippets Groups Projects
Commit 39a1d6e5 authored by rtoy's avatar rtoy
Browse files

Add script to massage nm output to get rid of the U lines that genesis

doesn't like.
parent 15893dcf
No related branches found
No related tags found
No related merge requests found
......@@ -5,7 +5,7 @@ vpath %.S $(PATH1)
CPPFLAGS = -I. -I$(PATH1) -I/usr/X11R6/include
CC = gcc3
LD = ld
NM = nm
NM = $(PATH1)/darwin-nm
CPP = cpp -no-cpp-precomp
DEPEND = $(CC) -MM
CFLAGS = -g -O3 -no-cpp-precomp -DDARWIN -Dppc
......
#!/bin/sh
# Remove the U lines that genesis doesn't like
nm "$@" | grep -v '^ U'
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment