Merge pull request #24 from polluks/patch-1

Fixed makefile (stupid typo)
This commit is contained in:
drmortalwombat 2023-07-18 12:17:49 +02:00 committed by GitHub
commit bbf2bd5b6a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -31,7 +31,7 @@ all: $(EXES)
$(CXX) -e -O3 -n $< $(CXX) -e -O3 -n $<
# testb # testb
bitshifttes: bitshifttest.c bitshifttest: bitshifttest.c
$(CC) -e -bc $< $(CC) -e -bc $<
$(CC) -e -bc -O2 $< $(CC) -e -bc -O2 $<
$(CC) -e -bc -O0 $< $(CC) -e -bc -O0 $<
@ -40,7 +40,7 @@ bitshifttes: bitshifttest.c
$(CC) -e -n $< $(CC) -e -n $<
# testn # testn
stripedarraytes: stripedarraytest.c stripedarraytest: stripedarraytest.c
$(CC) -e -O2 -n $< $(CC) -e -O2 -n $<
$(CC) -e -O0 -n $< $(CC) -e -O0 -n $<
$(CC) -e -Os -n $< $(CC) -e -Os -n $<